forked from wolfSSL/wolfssl
preview scr
This commit is contained in:
12
README
12
README
@@ -34,7 +34,17 @@ before calling SSL_new(); Though it's not recommended.
|
|||||||
|
|
||||||
*** end Notes ***
|
*** end Notes ***
|
||||||
|
|
||||||
CyaSSL Release 3.2.0 (09/10/2014)
|
CyaSSL intermediate Release 3.2.1c (9/30/2014)
|
||||||
|
|
||||||
|
- Small stack improvements for at TLS/SSL layer
|
||||||
|
- Adds client side Secure Renegotiation, * not recommended *
|
||||||
|
|
||||||
|
The CyaSSL manual is available at:
|
||||||
|
http://www.wolfssl.com/documentation/CyaSSL-Manual.pdf. For build instructions
|
||||||
|
and comments about the new features please check the manual.
|
||||||
|
|
||||||
|
|
||||||
|
***********CyaSSL Release 3.2.0 (09/10/2014)
|
||||||
|
|
||||||
Release 3.2.0 CyaSSL has bug fixes and new features including:
|
Release 3.2.0 CyaSSL has bug fixes and new features including:
|
||||||
|
|
||||||
|
@@ -6,7 +6,7 @@
|
|||||||
#
|
#
|
||||||
#
|
#
|
||||||
|
|
||||||
AC_INIT([cyassl],[3.2.1b],[https://github.com/cyassl/cyassl/issues],[cyassl],[http://www.wolfssl.com])
|
AC_INIT([cyassl],[3.2.1c],[https://github.com/cyassl/cyassl/issues],[cyassl],[http://www.wolfssl.com])
|
||||||
|
|
||||||
AC_CONFIG_AUX_DIR([build-aux])
|
AC_CONFIG_AUX_DIR([build-aux])
|
||||||
|
|
||||||
|
@@ -26,7 +26,7 @@
|
|||||||
extern "C" {
|
extern "C" {
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#define LIBCYASSL_VERSION_STRING "3.2.1b"
|
#define LIBCYASSL_VERSION_STRING "3.2.1c"
|
||||||
#define LIBCYASSL_VERSION_HEX 0x03002001
|
#define LIBCYASSL_VERSION_HEX 0x03002001
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
|
@@ -8939,6 +8939,15 @@ static void PickHashSigAlgo(CYASSL* ssl,
|
|||||||
return VERSION_ERROR;
|
return VERSION_ERROR;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#ifdef HAVE_SECURE_RENEGOTIATION
|
||||||
|
if (ssl->secure_renegotiation &&
|
||||||
|
ssl->secure_renegotiation->enabled &&
|
||||||
|
ssl->options.handShakeDone) {
|
||||||
|
CYASSL_MSG("Server changed version during scr");
|
||||||
|
return VERSION_ERROR;
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
if (pv.minor == SSLv3_MINOR) {
|
if (pv.minor == SSLv3_MINOR) {
|
||||||
/* turn off tls */
|
/* turn off tls */
|
||||||
CYASSL_MSG(" downgrading to SSLv3");
|
CYASSL_MSG(" downgrading to SSLv3");
|
||||||
|
Reference in New Issue
Block a user