提交 bc348244 编写于 作者: B Ben Laurie

Disable new TLS1 ciphersuites.

上级 a49034ab
...@@ -5,6 +5,9 @@ ...@@ -5,6 +5,9 @@
Changes between 0.9.1c and 0.9.2 Changes between 0.9.1c and 0.9.2
*) Disable new TLS1 ciphersuites by default: they aren't official yet.
[Ben Laurie]
*) Allow DSO flags like -fpic, -fPIC, -KPIC etc. to be specified *) Allow DSO flags like -fpic, -fPIC, -KPIC etc. to be specified
on the `perl Configure ...' command line. This way one can compile on the `perl Configure ...' command line. This way one can compile
OpenSSL libraries with Position Independent Code (PIC) which is needed OpenSSL libraries with Position Independent Code (PIC) which is needed
......
...@@ -355,6 +355,7 @@ SSL_CIPHER ssl3_ciphers[]={ ...@@ -355,6 +355,7 @@ SSL_CIPHER ssl3_ciphers[]={
SSL_ALL_CIPHERS, SSL_ALL_CIPHERS,
}, },
#if TLS1_ALLOW_EXPERIMENTAL_CIPHERSUITES
/* New TLS Export CipherSuites */ /* New TLS Export CipherSuites */
/* Cipher 60 */ /* Cipher 60 */
{ {
...@@ -383,6 +384,7 @@ SSL_CIPHER ssl3_ciphers[]={ ...@@ -383,6 +384,7 @@ SSL_CIPHER ssl3_ciphers[]={
0, 0,
SSL_ALL_CIPHERS SSL_ALL_CIPHERS
}, },
#endif
/* end of list */ /* end of list */
}; };
......
...@@ -65,6 +65,8 @@ ...@@ -65,6 +65,8 @@
extern "C" { extern "C" {
#endif #endif
#define TLS1_ALLOW_EXPERIMENTAL_CIPHERSUITES 0
#define TLS1_VERSION 0x0301 #define TLS1_VERSION 0x0301
#define TLS1_VERSION_MAJOR 0x03 #define TLS1_VERSION_MAJOR 0x03
#define TLS1_VERSION_MINOR 0x01 #define TLS1_VERSION_MINOR 0x01
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册