diff options
author | Pauli <paul.dale@oracle.com> | 2017-03-08 02:18:55 +0100 |
---|---|---|
committer | Rich Salz <rsalz@openssl.org> | 2017-03-08 16:01:28 +0100 |
commit | 777f1708a88f85569304caeca197c96ef912b236 (patch) | |
tree | 2901876856f26272488c1861707c77e009a22c56 /test/recipes/20-test_enc_more.t | |
parent | this change will prevent undefined behavior when src and dst are equal (memcp... (diff) | |
download | openssl-777f1708a88f85569304caeca197c96ef912b236.tar.xz openssl-777f1708a88f85569304caeca197c96ef912b236.zip |
Limit the output of the enc -ciphers command to just the ciphers enc can
process. This means no AEAD ciphers and no XTS mode.
Update the test script that uses this output to test cipher suites to not
filter out the now missing cipher modes.
Reviewed-by: Richard Levitte <levitte@openssl.org>
Reviewed-by: Rich Salz <rsalz@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/2876)
Diffstat (limited to '')
-rw-r--r-- | test/recipes/20-test_enc_more.t | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/recipes/20-test_enc_more.t b/test/recipes/20-test_enc_more.t index 2ea6897529..1419ddb5c3 100644 --- a/test/recipes/20-test_enc_more.t +++ b/test/recipes/20-test_enc_more.t @@ -29,7 +29,7 @@ my $fail = ""; my $cmd = "openssl"; my @ciphers = - grep(! /wrap|hmac|poly|ocb|xts|^$|^[^-]|(?i)[cg]cm/, + grep(! /wrap|^$|^[^-]/, (map { split /\s+/ } run(app([$cmd, "enc", "-ciphers"]), capture => 1))); |