summaryrefslogtreecommitdiffstats
path: root/test/recipes
diff options
context:
space:
mode:
authorPauli <paul.dale@oracle.com>2017-03-08 11:18:55 +1000
committerRich Salz <rsalz@openssl.org>2017-03-08 10:01:28 -0500
commit777f1708a88f85569304caeca197c96ef912b236 (patch)
tree2901876856f26272488c1861707c77e009a22c56 /test/recipes
parent6aad9393680ccde591905c8d71da92a241756394 (diff)
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 'test/recipes')
-rw-r--r--test/recipes/20-test_enc_more.t2
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)));