mirror of
https://github.com/wolfSSL/wolfssl.git
synced 2025-07-31 11:17:29 +02:00
In sniffer changed a memcpy to memmove; update for v3.3.2
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.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
|
- Countermeasuers for Handshake message duplicates, CHANGE CIPHER without
|
||||||
FINISHED, and fast forward attempts. Thanks to Karthikeyan Bhargavan from
|
FINISHED, and fast forward attempts. Thanks to Karthikeyan Bhargavan from
|
||||||
|
@ -36,6 +36,15 @@ 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)
|
# CyaSSL Release 3.3.0 (12/05/2014)
|
||||||
|
|
||||||
- Countermeasuers for Handshake message duplicates, CHANGE CIPHER without
|
- Countermeasuers for Handshake message duplicates, CHANGE CIPHER without
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
#
|
#
|
||||||
#
|
#
|
||||||
|
|
||||||
AC_INIT([cyassl],[3.3.0],[https://github.com/cyassl/cyassl/issues],[cyassl],[http://www.wolfssl.com])
|
AC_INIT([cyassl],[3.3.2],[https://github.com/cyassl/cyassl/issues],[cyassl],[http://www.wolfssl.com])
|
||||||
|
|
||||||
AC_CONFIG_AUX_DIR([build-aux])
|
AC_CONFIG_AUX_DIR([build-aux])
|
||||||
|
|
||||||
|
@ -26,8 +26,8 @@
|
|||||||
extern "C" {
|
extern "C" {
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#define LIBCYASSL_VERSION_STRING "3.3.0"
|
#define LIBCYASSL_VERSION_STRING "3.3.2"
|
||||||
#define LIBCYASSL_VERSION_HEX 0x03003000
|
#define LIBCYASSL_VERSION_HEX 0x03003002
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
}
|
}
|
||||||
|
@ -2673,7 +2673,7 @@ doMessage:
|
|||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
XMEMCPY(ssl->buffers.inputBuffer.buffer, sslFrame, sslBytes);
|
XMEMMOVE(ssl->buffers.inputBuffer.buffer, sslFrame, sslBytes);
|
||||||
ssl->buffers.inputBuffer.length = sslBytes;
|
ssl->buffers.inputBuffer.length = sslBytes;
|
||||||
}
|
}
|
||||||
if (HaveMoreInput(session, &sslFrame, &sslBytes, &end, error))
|
if (HaveMoreInput(session, &sslFrame, &sslBytes, &end, error))
|
||||||
|
Reference in New Issue
Block a user