From: Bodo Möller Date: Mon, 19 Feb 2007 14:49:12 +0000 (+0000) Subject: fix incorrect strength bit values for certain Kerberos ciphersuites X-Git-Tag: OpenSSL_0_9_8k^2~970 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=ccae144d62e8de651d7398d27a3a56e6402ea892;p=oweals%2Fopenssl.git fix incorrect strength bit values for certain Kerberos ciphersuites Submitted by: Victor Duchovni --- diff --git a/ssl/s3_lib.c b/ssl/s3_lib.c index 37d8ce49a5..d4114f3de8 100644 --- a/ssl/s3_lib.c +++ b/ssl/s3_lib.c @@ -690,7 +690,7 @@ OPENSSL_GLOBAL SSL_CIPHER ssl3_ciphers[]={ SSL_SSLV3, SSL_NOT_EXP|SSL_HIGH, 0, - 112, + 168, 168, }, @@ -754,7 +754,7 @@ OPENSSL_GLOBAL SSL_CIPHER ssl3_ciphers[]={ SSL_SSLV3, SSL_NOT_EXP|SSL_HIGH, 0, - 112, + 168, 168, }, @@ -834,7 +834,7 @@ OPENSSL_GLOBAL SSL_CIPHER ssl3_ciphers[]={ SSL_SSLV3, SSL_EXPORT|SSL_EXP40, 0, - 128, + 40, 128, }, @@ -882,7 +882,7 @@ OPENSSL_GLOBAL SSL_CIPHER ssl3_ciphers[]={ SSL_SSLV3, SSL_EXPORT|SSL_EXP40, 0, - 128, + 40, 128, }, #endif /* OPENSSL_NO_KRB5 */