提交 988788f6 编写于 作者: B Ben Laurie

Permit null ciphers.

上级 f9b2e530
...@@ -5,6 +5,12 @@ ...@@ -5,6 +5,12 @@
Changes between 0.9.1c and 0.9.2 Changes between 0.9.1c and 0.9.2
*) Permit null encryption ciphersuites, used for authentication only. It used
to be necessary to set the preprocessor define SSL_ALLOW_ENULL to do this.
It is now necessary to set SSL_FORBID_ENULL to prevent the use of null
encryption.
[Ben Laurie]
*) Add a bunch of fixes to the PKCS#7 stuff. It used to sometimes reorder *) Add a bunch of fixes to the PKCS#7 stuff. It used to sometimes reorder
signed attributes when verifying signatures (this would break them), signed attributes when verifying signatures (this would break them),
the detached data encoding was wrong and public keys obtained using the detached data encoding was wrong and public keys obtained using
......
...@@ -353,7 +353,7 @@ char *str; ...@@ -353,7 +353,7 @@ char *str;
mask|=SSL_kDHr|SSL_kDHd|SSL_kEDH|SSL_aDH; mask|=SSL_kDHr|SSL_kDHd|SSL_kEDH|SSL_aDH;
#endif #endif
#ifndef SSL_ALLOW_ENULL #ifdef SSL_FORBID_ENULL
mask|=SSL_eNULL; mask|=SSL_eNULL;
#endif #endif
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册