2.0.2 release

pull/1/head
toddouska 2011-12-05 15:42:18 -08:00
parent e82516ad2a
commit a81d3d02e1
3 changed files with 21 additions and 4 deletions

21
README
View File

@ -1,4 +1,4 @@
*** Note, Please read *** *** Notes, Please read ***
Note 1) Note 1)
CyaSSL now needs all examples and tests to be run from the CyaSSL home CyaSSL now needs all examples and tests to be run from the CyaSSL home
@ -34,7 +34,24 @@ before calling SSL_new(); Though it's not recommended.
*** end Note *** *** end Note ***
CyaSSL Release 2.0.0rc3 (9/28/2011) CyaSSL Release 2.0.2 (12/05/2011)
Release 2.0.2 CyaSSL has bug fixes and a few new features including:
- CTaoCrypt Runtime library detection settings when directly using the crypto
library
- Default certificate generation now uses SHAwRSA and adds SHA256wRSA generation
- All test certificates now use 2048bit and SHA-1 for better modern browser
support
- Direct AES block access and AES-CTR (counter) mode
- Microchip pic32 support
The CyaSSL manual is available at:
http://www.yassl.com/documentation/CyaSSL-Manual.pdf. For build instructions
and comments about the new features please check the manual.
************* CyaSSL Release 2.0.0rc3 (9/28/2011)
Release 2.0.0rc3 for CyaSSL has bug fixes and a few new features including: Release 2.0.0rc3 for CyaSSL has bug fixes and a few new features including:
- updated autoconf support - updated autoconf support

View File

@ -6,7 +6,7 @@
# #
# #
AC_INIT([cyassl],[2.0.1],[http://www.yassl.com]) AC_INIT([cyassl],[2.0.2],[http://www.yassl.com])
AC_CONFIG_AUX_DIR(config) AC_CONFIG_AUX_DIR(config)

View File

@ -126,7 +126,7 @@ THREAD_RETURN CYASSL_THREAD server_test(void* args)
err_sys("can't load ntru key file, " err_sys("can't load ntru key file, "
"Please run from CyaSSL home dir"); "Please run from CyaSSL home dir");
#else /* normal */ #else /* normal */
if (SSL_CTX_use_certificate_chain_file(ctx, svrCert) if (SSL_CTX_use_certificate_file(ctx, svrCert, SSL_FILETYPE_PEM)
!= SSL_SUCCESS) != SSL_SUCCESS)
err_sys("can't load server cert chain file, " err_sys("can't load server cert chain file, "
"Please run from CyaSSL home dir"); "Please run from CyaSSL home dir");