Skip to content

Commit ef28891

Browse files
Rich Salzmattcaswell
authored andcommitted
Put DES into "not default" category.
Add CVE to CHANGES Reviewed-by: Emilia Käsper <emilia@openssl.org>
1 parent d33726b commit ef28891

File tree

2 files changed

+14
-13
lines changed

2 files changed

+14
-13
lines changed

CHANGES

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,9 @@
44

55
Changes between 1.0.2h and 1.1.0 [xx XXX xxxx]
66

7-
*) Because of the SWEET32 attack, 3DES cipher suites have been disabled by
8-
default like RC4. See the RC4 item below to re-enable both.
7+
*) To mitigate the SWEET32 attack (CVE-2016-2183), 3DES cipher suites
8+
have been disabled by default and removed from DEFAULT, just like RC4.
9+
See the RC4 item below to re-enable both.
910
[Rich Salz]
1011

1112
*) The method for finding the storage location for the Windows RAND seed file

ssl/s3_lib.c

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@
5757
#define SSL3_NUM_CIPHERS OSSL_NELEM(ssl3_ciphers)
5858

5959
/*
60-
* The list of available ciphers, organized into the following
60+
* The list of available ciphers, mostly organized into the following
6161
* groups:
6262
* Always there
6363
* EC
@@ -108,7 +108,7 @@ static SSL_CIPHER ssl3_ciphers[] = {
108108
SSL_SHA1,
109109
SSL3_VERSION, TLS1_2_VERSION,
110110
DTLS1_BAD_VER, DTLS1_2_VERSION,
111-
SSL_MEDIUM | SSL_FIPS,
111+
SSL_NOT_DEFAULT | SSL_MEDIUM | SSL_FIPS,
112112
SSL_HANDSHAKE_MAC_DEFAULT | TLS1_PRF,
113113
112,
114114
168,
@@ -138,7 +138,7 @@ static SSL_CIPHER ssl3_ciphers[] = {
138138
SSL_SHA1,
139139
SSL3_VERSION, TLS1_2_VERSION,
140140
DTLS1_BAD_VER, DTLS1_2_VERSION,
141-
SSL_MEDIUM | SSL_FIPS,
141+
SSL_NOT_DEFAULT | SSL_MEDIUM | SSL_FIPS,
142142
SSL_HANDSHAKE_MAC_DEFAULT | TLS1_PRF,
143143
112,
144144
168,
@@ -862,7 +862,7 @@ static SSL_CIPHER ssl3_ciphers[] = {
862862
SSL_SHA1,
863863
SSL3_VERSION, TLS1_2_VERSION,
864864
DTLS1_BAD_VER, DTLS1_2_VERSION,
865-
SSL_MEDIUM | SSL_FIPS,
865+
SSL_NOT_DEFAULT | SSL_MEDIUM | SSL_FIPS,
866866
SSL_HANDSHAKE_MAC_DEFAULT | TLS1_PRF,
867867
112,
868868
168,
@@ -924,7 +924,7 @@ static SSL_CIPHER ssl3_ciphers[] = {
924924
SSL_SHA1,
925925
SSL3_VERSION, TLS1_2_VERSION,
926926
DTLS1_BAD_VER, DTLS1_2_VERSION,
927-
SSL_MEDIUM | SSL_FIPS,
927+
SSL_NOT_DEFAULT | SSL_MEDIUM | SSL_FIPS,
928928
SSL_HANDSHAKE_MAC_DEFAULT | TLS1_PRF,
929929
112,
930930
168,
@@ -1201,7 +1201,7 @@ static SSL_CIPHER ssl3_ciphers[] = {
12011201
SSL_SHA1,
12021202
SSL3_VERSION, TLS1_2_VERSION,
12031203
DTLS1_BAD_VER, DTLS1_2_VERSION,
1204-
SSL_MEDIUM | SSL_FIPS,
1204+
SSL_NOT_DEFAULT | SSL_MEDIUM | SSL_FIPS,
12051205
SSL_HANDSHAKE_MAC_DEFAULT | TLS1_PRF,
12061206
112,
12071207
168,
@@ -1248,7 +1248,7 @@ static SSL_CIPHER ssl3_ciphers[] = {
12481248
SSL_SHA1,
12491249
SSL3_VERSION, TLS1_2_VERSION,
12501250
DTLS1_BAD_VER, DTLS1_2_VERSION,
1251-
SSL_MEDIUM | SSL_FIPS,
1251+
SSL_NOT_DEFAULT | SSL_MEDIUM | SSL_FIPS,
12521252
SSL_HANDSHAKE_MAC_DEFAULT | TLS1_PRF,
12531253
112,
12541254
168,
@@ -1295,7 +1295,7 @@ static SSL_CIPHER ssl3_ciphers[] = {
12951295
SSL_SHA1,
12961296
SSL3_VERSION, TLS1_2_VERSION,
12971297
DTLS1_BAD_VER, DTLS1_2_VERSION,
1298-
SSL_MEDIUM | SSL_FIPS,
1298+
SSL_NOT_DEFAULT | SSL_MEDIUM | SSL_FIPS,
12991299
SSL_HANDSHAKE_MAC_DEFAULT | TLS1_PRF,
13001300
112,
13011301
168,
@@ -1613,7 +1613,7 @@ static SSL_CIPHER ssl3_ciphers[] = {
16131613
SSL_SHA1,
16141614
SSL3_VERSION, TLS1_2_VERSION,
16151615
DTLS1_BAD_VER, DTLS1_2_VERSION,
1616-
SSL_MEDIUM | SSL_FIPS,
1616+
SSL_NOT_DEFAULT | SSL_MEDIUM | SSL_FIPS,
16171617
SSL_HANDSHAKE_MAC_DEFAULT | TLS1_PRF,
16181618
112,
16191619
168,
@@ -1739,7 +1739,7 @@ static SSL_CIPHER ssl3_ciphers[] = {
17391739
SSL_SHA1,
17401740
SSL3_VERSION, TLS1_2_VERSION,
17411741
DTLS1_BAD_VER, DTLS1_2_VERSION,
1742-
SSL_MEDIUM,
1742+
SSL_NOT_DEFAULT | SSL_MEDIUM,
17431743
SSL_HANDSHAKE_MAC_DEFAULT | TLS1_PRF,
17441744
112,
17451745
168,
@@ -1754,7 +1754,7 @@ static SSL_CIPHER ssl3_ciphers[] = {
17541754
SSL_SHA1,
17551755
SSL3_VERSION, TLS1_2_VERSION,
17561756
DTLS1_BAD_VER, DTLS1_2_VERSION,
1757-
SSL_MEDIUM,
1757+
SSL_NOT_DEFAULT | SSL_MEDIUM,
17581758
SSL_HANDSHAKE_MAC_DEFAULT | TLS1_PRF,
17591759
112,
17601760
168,

0 commit comments

Comments
 (0)