1.9.0 release
This commit is contained in:
parent
ca9072aae8
commit
228a5d7eaa
14
README
14
README
@ -13,7 +13,19 @@ before calling SSL_new(); Though it's not recommended.
|
|||||||
|
|
||||||
*** end Note ***
|
*** 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
|
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
|
generation, a C standard library abstraction layer, lower memory use, increased
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
AC_INIT
|
AC_INIT
|
||||||
AC_CANONICAL_SYSTEM
|
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)
|
AM_CONFIG_HEADER(ctaocrypt/include/config.h)
|
||||||
|
|
||||||
|
|
||||||
|
@ -79,7 +79,7 @@
|
|||||||
#define STDC_HEADERS 1
|
#define STDC_HEADERS 1
|
||||||
|
|
||||||
/* Version number of package */
|
/* 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
|
/* Define to 1 if your processor stores words with the most significant byte
|
||||||
first (like Motorola and SPARC, unlike Intel and VAX). */
|
first (like Motorola and SPARC, unlike Intel and VAX). */
|
||||||
|
@ -64,6 +64,7 @@
|
|||||||
|
|
||||||
#ifdef MICRIUM
|
#ifdef MICRIUM
|
||||||
|
|
||||||
|
#include "stdlib.h"
|
||||||
#include "net_cfg.h"
|
#include "net_cfg.h"
|
||||||
#include "ssl_cfg.h"
|
#include "ssl_cfg.h"
|
||||||
#include "net_secure_os.h"
|
#include "net_secure_os.h"
|
||||||
|
@ -25,6 +25,8 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
#include "os_settings.h" /* in case user set USE_FAST_MATH there */
|
||||||
|
|
||||||
#ifndef USE_FAST_MATH
|
#ifndef USE_FAST_MATH
|
||||||
|
|
||||||
#include "integer.h"
|
#include "integer.h"
|
||||||
|
@ -29,6 +29,7 @@
|
|||||||
* to fit CyaSSL's needs.
|
* to fit CyaSSL's needs.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#include "os_settings.h" /* in case user set USE_FAST_MATH there */
|
||||||
|
|
||||||
#ifdef USE_FAST_MATH
|
#ifdef USE_FAST_MATH
|
||||||
|
|
||||||
|
@ -39,7 +39,7 @@
|
|||||||
#include "prefix_ssl.h"
|
#include "prefix_ssl.h"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#define CYASSL_VERSION "1.8.9"
|
#define CYASSL_VERSION "1.9.0"
|
||||||
|
|
||||||
#undef X509_NAME /* wincrypt.h clash */
|
#undef X509_NAME /* wincrypt.h clash */
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user