From 35908bd04005d9173315df6aae91f0140f63144b Mon Sep 17 00:00:00 2001 From: =?utf8?q?Bodo=20M=C3=B6ller?= Date: Tue, 20 Jun 2006 08:50:33 +0000 Subject: [PATCH] Remove ECC ciphersuites from 0.9.8 branch (should use 0.9.9 branch) --- CHANGES | 5 +++++ ssl/s3_lib.c | 2 ++ 2 files changed, 7 insertions(+) diff --git a/CHANGES b/CHANGES index 82790879f9..935242efb3 100644 --- a/CHANGES +++ b/CHANGES @@ -4,6 +4,11 @@ Changes between 0.9.8b and 0.9.8c [xx XXX xxxx] + *) Disable "ECCdraft" ciphersuites (which were not part of the "ALL" + alias). These are now excluded from compilation by default, since + OpenSSL 0.9.9[-dev] should be used for TLS with elliptic curves. + [Bodo Moeller] + *) Disable rogue ciphersuites: - SSLv2 0x08 0x00 0x80 ("RC4-64-MD5") diff --git a/ssl/s3_lib.c b/ssl/s3_lib.c index 0eff243c12..f08c9932c9 100644 --- a/ssl/s3_lib.c +++ b/ssl/s3_lib.c @@ -1165,6 +1165,7 @@ OPENSSL_GLOBAL SSL_CIPHER ssl3_ciphers[]={ }, #endif /* OPENSSL_NO_CAMELLIA */ +#if 0 /* please use OpenSSL 0.9.9 branch for ECC ciphersuites */ #ifndef OPENSSL_NO_ECDH /* Cipher C001 */ { @@ -1516,6 +1517,7 @@ OPENSSL_GLOBAL SSL_CIPHER ssl3_ciphers[]={ SSL_ALL_STRENGTHS, }, #endif /* OPENSSL_NO_ECDH */ +#endif /* end of list */ -- 2.40.0