summaryrefslogtreecommitdiffstats
path: root/test/cipherlist_test.c
diff options
context:
space:
mode:
authorRich Salz <rsalz@openssl.org>2016-07-30 12:21:32 -0400
committerMatt Caswell <matt@openssl.org>2016-08-24 14:05:52 +0100
commitd33726b92e09605a088369d0e01c99d138c0524f (patch)
tree2ca91bfac0f0ee1eb031196cf1c7becfe70a9ce1 /test/cipherlist_test.c
parentcfd20f64cc4bd440cfc8fe59f2daaa575015af3d (diff)
To avoid SWEET32 attack, move 3DES to weak
Reviewed-by: Viktor Dukhovni <viktor@openssl.org>
Diffstat (limited to 'test/cipherlist_test.c')
-rw-r--r--test/cipherlist_test.c13
1 files changed, 0 insertions, 13 deletions
diff --git a/test/cipherlist_test.c b/test/cipherlist_test.c
index e892f9d5a3..d6556e0537 100644
--- a/test/cipherlist_test.c
+++ b/test/cipherlist_test.c
@@ -104,16 +104,6 @@ static const uint32_t default_ciphers_in_order[] = {
TLS1_CK_DHE_RSA_WITH_AES_128_SHA,
#endif
-#ifndef OPENSSL_NO_DES
-# ifndef OPENSSL_NO_EC
- TLS1_CK_ECDHE_ECDSA_WITH_DES_192_CBC3_SHA,
- TLS1_CK_ECDHE_RSA_WITH_DES_192_CBC3_SHA,
-# endif
-# ifndef OPENSSL_NO_DH
- SSL3_CK_DHE_RSA_DES_192_CBC3_SHA,
-# endif
-#endif /* !OPENSSL_NO_DES */
-
#ifndef OPENSSL_NO_TLS1_2
TLS1_CK_RSA_WITH_AES_256_GCM_SHA384,
TLS1_CK_RSA_WITH_AES_128_GCM_SHA256,
@@ -123,9 +113,6 @@ static const uint32_t default_ciphers_in_order[] = {
TLS1_CK_RSA_WITH_AES_256_SHA,
TLS1_CK_RSA_WITH_AES_128_SHA,
-#ifndef OPENSSL_NO_DES
- SSL3_CK_RSA_DES_192_CBC3_SHA,
-#endif
};
static int test_default_cipherlist(SSL_CTX *ctx)