diff --git a/README b/README index e7023fd03..ed31b608c 100644 --- a/README +++ b/README @@ -1,4 +1,4 @@ -*** Note, Please read *** +*** Notes, Please read *** Note 1) 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 *** -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: - updated autoconf support diff --git a/configure.ac b/configure.ac index 7a813fc3d..d240c1867 100644 --- a/configure.ac +++ b/configure.ac @@ -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) diff --git a/examples/server/server.c b/examples/server/server.c index 5c65ca517..c55825b19 100644 --- a/examples/server/server.c +++ b/examples/server/server.c @@ -126,7 +126,7 @@ THREAD_RETURN CYASSL_THREAD server_test(void* args) err_sys("can't load ntru key file, " "Please run from CyaSSL home dir"); #else /* normal */ - if (SSL_CTX_use_certificate_chain_file(ctx, svrCert) + if (SSL_CTX_use_certificate_file(ctx, svrCert, SSL_FILETYPE_PEM) != SSL_SUCCESS) err_sys("can't load server cert chain file, " "Please run from CyaSSL home dir");