Prepare for mbed TLS 1.3.10 release

This commit is contained in:
Paul Bakker 2015-02-08 15:49:54 +01:00
parent 6674cce892
commit daae3b749b
55 changed files with 2195 additions and 2197 deletions

View File

@ -1,9 +1,6 @@
PolarSSL ChangeLog (Sorted per branch, date) mbed TLS ChangeLog (Sorted per branch, date)
= 1.3 branch
Reminder: bump SONAME for ABI change (FALLBACK_SCSV, session-hash, EtM)
= mbed TLS 1.3.10 released 2015-02-09
Security Security
* NULL pointer dereference in the buffer-based allocator when the buffer is * NULL pointer dereference in the buffer-based allocator when the buffer is
full and polarssl_free() is called (found by Mark Hasemeyer) full and polarssl_free() is called (found by Mark Hasemeyer)

View File

@ -4,7 +4,7 @@
*/ */
/** /**
* @mainpage mbed TLS v1.3.9 source code documentation * @mainpage mbed TLS v1.3.10 source code documentation
* *
* This documentation describes the internal structure of mbed TLS. It was * This documentation describes the internal structure of mbed TLS. It was
* automatically generated from specially formatted comment blocks in * automatically generated from specially formatted comment blocks in

View File

@ -28,7 +28,7 @@ DOXYFILE_ENCODING = UTF-8
# identify the project. Note that if you do not use Doxywizard you need # identify the project. Note that if you do not use Doxywizard you need
# to put quotes around the project name if it contains spaces. # to put quotes around the project name if it contains spaces.
PROJECT_NAME = "mbed TLS v1.3.9" PROJECT_NAME = "mbed TLS v1.3.10"
# The PROJECT_NUMBER tag can be used to enter a project or revision number. # The PROJECT_NUMBER tag can be used to enter a project or revision number.
# This could be handy for archiving the generated documentation or # This could be handy for archiving the generated documentation or

View File

@ -40,16 +40,16 @@
*/ */
#define POLARSSL_VERSION_MAJOR 1 #define POLARSSL_VERSION_MAJOR 1
#define POLARSSL_VERSION_MINOR 3 #define POLARSSL_VERSION_MINOR 3
#define POLARSSL_VERSION_PATCH 9 #define POLARSSL_VERSION_PATCH 10
/** /**
* The single version number has the following structure: * The single version number has the following structure:
* MMNNPP00 * MMNNPP00
* Major version | Minor version | Patch version * Major version | Minor version | Patch version
*/ */
#define POLARSSL_VERSION_NUMBER 0x01030900 #define POLARSSL_VERSION_NUMBER 0x01030A00
#define POLARSSL_VERSION_STRING "1.3.9" #define POLARSSL_VERSION_STRING "1.3.10"
#define POLARSSL_VERSION_STRING_FULL "mbed TLS 1.3.9" #define POLARSSL_VERSION_STRING_FULL "mbed TLS 1.3.10"
#if defined(POLARSSL_VERSION_C) #if defined(POLARSSL_VERSION_C)

View File

@ -117,7 +117,7 @@ endif()
if(USE_SHARED_MBEDTLS_LIBRARY) if(USE_SHARED_MBEDTLS_LIBRARY)
add_library(mbedtls SHARED ${src}) add_library(mbedtls SHARED ${src})
set_target_properties(mbedtls PROPERTIES VERSION 1.3.9 SOVERSION 7) set_target_properties(mbedtls PROPERTIES VERSION 1.3.10 SOVERSION 8)
target_link_libraries(mbedtls ${libs}) target_link_libraries(mbedtls ${libs})

View File

@ -24,7 +24,7 @@ endif
SONAME=libmbedtls.so.7 SONAME=libmbedtls.so.7
DLEXT=so.7 DLEXT=so.8
# OSX shared library extension: # OSX shared library extension:
# DLEXT=dylib # DLEXT=dylib

View File

@ -33,7 +33,7 @@
#if defined(POLARSSL_ERROR_C) #if defined(POLARSSL_ERROR_C)
HEADER_INCLUDED HEADER_INCLUDED
#include <stdio.h>
#include <string.h> #include <string.h>
#if defined(_MSC_VER) && !defined snprintf && !defined(EFIX64) && \ #if defined(_MSC_VER) && !defined snprintf && !defined(EFIX64) && \

View File

@ -1,8 +1,8 @@
Check compiletime library version Check compiletime library version
check_compiletime_version:"1.3.9" check_compiletime_version:"1.3.10"
Check runtime library version Check runtime library version
check_runtime_version:"1.3.9" check_runtime_version:"1.3.10"
Check for POLARSSL_VERSION_C Check for POLARSSL_VERSION_C
check_feature:"POLARSSL_VERSION_C":0 check_feature:"POLARSSL_VERSION_C":0

View File

@ -659,3 +659,4 @@ Package=<3>
}}} }}}
############################################################################### ###############################################################################