Skip to content

Commit 8c722ce

Browse files
drwetterPeterMosmans
authored andcommitted
Enable experimental / insecure features by default
1 parent ba2b1c6 commit 8c722ce

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

ssl/s2_lib.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ const char ssl2_version_str[]="SSLv2" OPENSSL_VERSION_PTEXT;
122122

123123
/* list of available SSLv2 ciphers (sorted by id) */
124124
OPENSSL_GLOBAL const SSL_CIPHER ssl2_ciphers[]={
125-
#if 0
125+
#if 1
126126
/* NULL_WITH_MD5 v3 */
127127
{
128128
1,
@@ -254,7 +254,7 @@ OPENSSL_GLOBAL const SSL_CIPHER ssl2_ciphers[]={
254254
168,
255255
},
256256

257-
#if 0
257+
#if 1
258258
/* RC4_64_WITH_MD5 */
259259
{
260260
1,

ssl/tls1.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@
157157
extern "C" {
158158
#endif
159159

160-
#define TLS1_ALLOW_EXPERIMENTAL_CIPHERSUITES 0
160+
#define TLS1_ALLOW_EXPERIMENTAL_CIPHERSUITES 1
161161

162162
#define TLS1_2_VERSION 0x0303
163163
#define TLS1_2_VERSION_MAJOR 0x03

0 commit comments

Comments
 (0)