summaryrefslogtreecommitdiffstats
path: root/test/recipes/20-test_enc.t (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Skip tests depending on deprecated list -*-commands optionsDmitry Belyavskiy2020-12-151-0/+2
| | | | | Reviewed-by: Paul Dale <paul.dale@oracle.com> (Merged from https://github.com/openssl/openssl/pull/13669)
* Skip testing ciphers in the legacy provider if no legacyMatt Caswell2020-12-111-2/+6
| | | | | | | | test_enc should not test ciphers that are not available due to a lack of the legacy provider Reviewed-by: Richard Levitte <levitte@openssl.org> (Merged from https://github.com/openssl/openssl/pull/13595)
* Apps: change provider_path option to provider-path.Pauli2020-08-181-1/+1
| | | | | | | The applications use '-' in options not '_'. Reviewed-by: Richard Levitte <levitte@openssl.org> (Merged from https://github.com/openssl/openssl/pull/12662)
* Update copyright yearMatt Caswell2020-04-231-1/+1
| | | | | Reviewed-by: Richard Levitte <levitte@openssl.org> (Merged from https://github.com/openssl/openssl/pull/11616)
* Move legacy ciphers into the legacy providerShane Lontis2020-04-091-3/+5
| | | | | | | | | | | DES, idea, seed, rc2, rc4, rc5, cast and blowfish have been moved out of the default provider. Code shared between desx and tdes has been moved into a seperate file (cipher_tdes_common.c). 3 test recipes failed due to using app/openssl calls that used legacy ciphers. These calls have been updated to supply both the default and legacy providers. Fixed openssl app '-provider' memory leak Reviewed-by: Richard Levitte <levitte@openssl.org> (Merged from https://github.com/openssl/openssl/pull/11419)
* TEST: Modify test/recipes/20-test_enc.t to leave artifacts behindRichard Levitte2020-02-181-3/+0
| | | | | Reviewed-by: Paul Dale <paul.dale@oracle.com> (Merged from https://github.com/openssl/openssl/pull/11080)
* Following the license change, modify the boilerplates in test/Richard Levitte2018-12-061-1/+1
| | | | | Reviewed-by: Matt Caswell <matt@openssl.org> (Merged from https://github.com/openssl/openssl/pull/7767)
* Adapt 20-test_enc.t and 20-test_enc_more.t to use statusvarRichard Levitte2017-03-211-9/+10
| | | | Reviewed-by: Rich Salz <rsalz@openssl.org> (Merged from https://github.com/openssl/openssl/pull/3004)
* Unified copyright for test recipesRich Salz2016-04-221-1/+8
| | | | Reviewed-by: Richard Levitte <levitte@openssl.org>
* unified build scheme: adjust test framework for out of source build treeRichard Levitte2016-02-091-2/+2
| | | | | | | | | | | | | | | | To be able to run tests when we've built in a directory other than the source tree, the testing framework needs a few adjustments. test/testlib/OpenSSL/Test.pm needs to know where it can find shlib_wrap.sh, and a number of other tests need to be told a different place to find engines than what they may be able to figure out on their own. Relying to $TOP is not enough, $SRCTOP and $BLDTOP can be used as an alternative. As part of this change, top_file and top_dir are removed and srctop_file, bldtop_file, srctop_dir and bldtop_dir take their place. Reviewed-by: Ben Laurie <ben@openssl.org>
* Do not use redirection on binary filesRichard Levitte2016-01-141-4/+2
| | | | | | | | | | | On some platforms, the shell will determine what attributes a file will have, so while the program might think it's safely outputting binary data, it's not always true. For the sake of the tests, it's therefore safer to use -out than to use redirection. Reviewed-by: Rich Salz <rsalz@openssl.org>
* Test suite: chomp->s/\R// to harmonize with mingw 'make test'.Andy Polyakov2015-10-131-1/+1
| | | | Reviewed-by: Richard Levitte <levitte@openssl.org>
* Change OpenSSL::Test to be an extension of Test::MoreRichard Levitte2015-09-071-1/+0
| | | | | | | | | | | It became tedious as well as error prone to have all recipes use Test::More as well as OpenSSL::Test. The easier way is to make OpenSSL::Test an extension of Test::More, thereby having all version checks as well as future checks firmly there. Additionally, that allows us to extend existing Test::More functions if the need would arise. Reviewed-by: Rich Salz <rsalz@openssl.org>
* Add version numbers on some modules we use.Richard Levitte2015-09-071-1/+1
| | | | Reviewed-by: Rich Salz <rsalz@openssl.org>
* Add the encryption test recipeRichard Levitte2015-09-071-0/+65
This tests all available openssl cipher commands. Reviewed-by: Rich Salz <rsalz@openssl.org>