mirror of https://github.com/wolfSSL/wolfssl.git
parent
b1c5f3b299
commit
f06c08718c
21
README
21
README
|
@ -32,7 +32,26 @@ before calling wolfSSL_new(); Though it's not recommended.
|
||||||
|
|
||||||
*** end Notes ***
|
*** end Notes ***
|
||||||
|
|
||||||
wolfSSL (Formerly CyaSSL) Release 3.6.8 (09/17/2015)
|
wolfSSL (Formerly CyaSSL) Release 3.6.9 (10/05/2015)
|
||||||
|
|
||||||
|
Release 3.6.9 of wolfSSL has bug fixes and new features including:
|
||||||
|
|
||||||
|
- New option for the sniffer where it will try to pick up decoding after a
|
||||||
|
sequence number acknowldgement fault. Also includes some additional stats.
|
||||||
|
- AES-GCM/CCM fixes.
|
||||||
|
- FreeRTOS support updates.
|
||||||
|
- VXWorks support updates.
|
||||||
|
- Added the IDEA cipher and support in wolfSSL.
|
||||||
|
- Update wolfSSL website CA.
|
||||||
|
- CFLAGS is usable when configuring source.
|
||||||
|
|
||||||
|
- No high level security fixes that requires an update though we always
|
||||||
|
recommend updating to the latest
|
||||||
|
|
||||||
|
See INSTALL file for build instructions.
|
||||||
|
More info can be found on-line at //http://wolfssl.com/yaSSL/Docs.html
|
||||||
|
|
||||||
|
********* wolfSSL (Formerly CyaSSL) Release 3.6.8 (09/17/2015)
|
||||||
|
|
||||||
Release 3.6.8 of wolfSSL fixes two high severity vulnerabilities. It also
|
Release 3.6.8 of wolfSSL fixes two high severity vulnerabilities. It also
|
||||||
includes bug fixes and new features including:
|
includes bug fixes and new features including:
|
||||||
|
|
20
README.md
20
README.md
|
@ -36,6 +36,26 @@ before calling wolfSSL_new(); Though it's not recommended.
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
||||||
|
# wolfSSL (Formerly CyaSSL) Release 3.6.9 (10/05/2015)
|
||||||
|
|
||||||
|
##Release 3.6.9 of wolfSSL has bug fixes and new features including:
|
||||||
|
|
||||||
|
- New option for the sniffer where it will try to pick up decoding after a
|
||||||
|
sequence number acknowldgement fault. Also includes some additional stats.
|
||||||
|
- AES-GCM/CCM fixes.
|
||||||
|
- FreeRTOS support updates.
|
||||||
|
- VXWorks support updates.
|
||||||
|
- Added the IDEA cipher and support in wolfSSL.
|
||||||
|
- Update wolfSSL website CA.
|
||||||
|
- CFLAGS is usable when configuring source.
|
||||||
|
|
||||||
|
- No high level security fixes that requires an update though we always
|
||||||
|
recommend updating to the latest
|
||||||
|
|
||||||
|
See INSTALL file for build instructions.
|
||||||
|
More info can be found on-line at //http://wolfssl.com/yaSSL/Docs.html
|
||||||
|
|
||||||
|
|
||||||
#wolfSSL (Formerly CyaSSL) Release 3.6.8 (09/17/2015)
|
#wolfSSL (Formerly CyaSSL) Release 3.6.8 (09/17/2015)
|
||||||
|
|
||||||
##Release 3.6.8 of wolfSSL fixes two high severity vulnerabilities.
|
##Release 3.6.8 of wolfSSL fixes two high severity vulnerabilities.
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
#
|
#
|
||||||
#
|
#
|
||||||
|
|
||||||
AC_INIT([wolfssl],[3.6.8],[https://github.com/wolfssl/wolfssl/issues],[wolfssl],[http://www.wolfssl.com])
|
AC_INIT([wolfssl],[3.6.9],[https://github.com/wolfssl/wolfssl/issues],[wolfssl],[http://www.wolfssl.com])
|
||||||
|
|
||||||
AC_CONFIG_AUX_DIR([build-aux])
|
AC_CONFIG_AUX_DIR([build-aux])
|
||||||
|
|
||||||
|
|
|
@ -5,6 +5,6 @@ includedir=${prefix}/include
|
||||||
|
|
||||||
Name: wolfssl
|
Name: wolfssl
|
||||||
Description: wolfssl C library.
|
Description: wolfssl C library.
|
||||||
Version: 3.6.8
|
Version: 3.6.9
|
||||||
Libs: -L${libdir} -lwolfssl
|
Libs: -L${libdir} -lwolfssl
|
||||||
Cflags: -I${includedir}
|
Cflags: -I${includedir}
|
||||||
|
|
|
@ -26,8 +26,8 @@
|
||||||
extern "C" {
|
extern "C" {
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#define LIBWOLFSSL_VERSION_STRING "3.6.8"
|
#define LIBWOLFSSL_VERSION_STRING "3.6.9"
|
||||||
#define LIBWOLFSSL_VERSION_HEX 0x03006008
|
#define LIBWOLFSSL_VERSION_HEX 0x03006009
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue