1.9.0 release

This commit is contained in:
Todd A Ouska 2011-03-02 10:15:07 -08:00
parent ca9072aae8
commit 228a5d7eaa
7 changed files with 20 additions and 4 deletions

14
README
View File

@ -13,7 +13,19 @@ before calling SSL_new(); Though it's not recommended.
*** end Note ***
CyaSSL Release 1.8.0 (12/23/2010)
CyaSSL Release 1.9.0 (3/2/2011)
Release 1.9.0 for CyaSSL adds bug fixes, improved TLSv1.2 through testing and
better hash/sig algo ids, --enable-webServer for the yaSSL embedded web server,
improper AES key setup detection, user cert verify callback improvements, and
more.
The CyaSSL manual offering is included in the doc/ directory. For build
instructions and comments about the new features please check the manual.
Please send any comments or questions to support@yassl.com.
****************** CyaSSL Release 1.8.0 (12/23/2010)
Release 1.8.0 for CyaSSL adds bug fixes, x509 v3 CA signed certificate
generation, a C standard library abstraction layer, lower memory use, increased

View File

@ -1,6 +1,6 @@
AC_INIT
AC_CANONICAL_SYSTEM
AM_INIT_AUTOMAKE(cyassl,1.8.9) # !!! also change in ssl.h !!!
AM_INIT_AUTOMAKE(cyassl,1.9.0) # !!! also change in ssl.h !!!
AM_CONFIG_HEADER(ctaocrypt/include/config.h)

View File

@ -79,7 +79,7 @@
#define STDC_HEADERS 1
/* Version number of package */
#define VERSION "1.8.9"
#define VERSION "1.9.0"
/* Define to 1 if your processor stores words with the most significant byte
first (like Motorola and SPARC, unlike Intel and VAX). */

View File

@ -64,6 +64,7 @@
#ifdef MICRIUM
#include "stdlib.h"
#include "net_cfg.h"
#include "ssl_cfg.h"
#include "net_secure_os.h"

View File

@ -25,6 +25,8 @@
*/
#include "os_settings.h" /* in case user set USE_FAST_MATH there */
#ifndef USE_FAST_MATH
#include "integer.h"

View File

@ -29,6 +29,7 @@
* to fit CyaSSL's needs.
*/
#include "os_settings.h" /* in case user set USE_FAST_MATH there */
#ifdef USE_FAST_MATH

View File

@ -39,7 +39,7 @@
#include "prefix_ssl.h"
#endif
#define CYASSL_VERSION "1.8.9"
#define CYASSL_VERSION "1.9.0"
#undef X509_NAME /* wincrypt.h clash */