This commit is contained in:
Jacob Barthelmeh
2015-01-09 10:07:54 -07:00
5 changed files with 21 additions and 5 deletions

11
README
View File

@@ -34,7 +34,16 @@ before calling SSL_new(); Though it's not recommended.
*** end Notes ***
CyaSSL Release 3.3.0 (12/05/2014)
CyaSSL Release 3.3.2 (01/07/2015)
Release 3.3.2 CyaSSL has bug fixes and new features including:
- Improvements in the build configuration under AIX.
- Various compile warnings.
- Changed a memcpy to memmove in the sniffer.
***********CyaSSL Release 3.3.0 (12/05/2014)
- Countermeasuers for Handshake message duplicates, CHANGE CIPHER without
FINISHED, and fast forward attempts. Thanks to Karthikeyan Bhargavan from

View File

@@ -35,6 +35,13 @@ SSL_CTX_set_verify(ctx, SSL_VERIFY_NONE, 0);
before calling SSL_new(); Though it's not recommended.
```
# CyaSSL Release 3.3.2 (01/07/2015)
## Release 3.3.2 CyaSSL has bug fixes and new features including:
- Improvements in the build configuration under AIX.
- Various compile warnings.
- Changed a memcpy to memmove in the sniffer
# CyaSSL Release 3.3.0 (12/05/2014)

View File

@@ -6,7 +6,7 @@
#
#
AC_INIT([wolfssl],[3.3.0],[https://github.com/wolfssl/wolfssl/issues],[wolfssl],[http://www.wolfssl.com])
AC_INIT([wolfssl],[3.3.2],[https://github.com/wolfssl/wolfssl/issues],[wolfssl],[http://www.wolfssl.com])
AC_CONFIG_AUX_DIR([build-aux])

View File

@@ -2674,7 +2674,7 @@ doMessage:
return -1;
}
}
XMEMCPY(ssl->buffers.inputBuffer.buffer, sslFrame, sslBytes);
XMEMMOVE(ssl->buffers.inputBuffer.buffer, sslFrame, sslBytes);
ssl->buffers.inputBuffer.length = sslBytes;
}
if (HaveMoreInput(session, &sslFrame, &sslBytes, &end, error))

View File

@@ -26,8 +26,8 @@
extern "C" {
#endif
#define LIBWOLFSSL_VERSION_STRING "3.3.0"
#define LIBWOLFSSL_VERSION_HEX 0x03003000
#define LIBWOLFSSL_VERSION_STRING "3.3.2"
#define LIBWOLFSSL_VERSION_HEX 0x03003002
#ifdef __cplusplus
}