1
0
mirror of https://github.com/Mbed-TLS/mbedtls.git synced 2025-07-30 22:43:08 +03:00

Prepared for 1.3.0 RC0

This commit is contained in:
Paul Bakker
2013-09-18 21:21:30 +02:00
parent eaed9dffb7
commit 5ad403f5b5
7 changed files with 15 additions and 14 deletions

View File

@ -75,7 +75,7 @@ add_library(polarssl STATIC ${src})
else(NOT USE_SHARED_POLARSSL_LIBRARY)
add_library(polarssl SHARED ${src})
set_target_properties(polarssl PROPERTIES VERSION 1.2.6 SOVERSION 2)
set_target_properties(polarssl PROPERTIES VERSION 1.3.0 SOVERSION 3)
endif(NOT USE_SHARED_POLARSSL_LIBRARY)

View File

@ -3547,6 +3547,8 @@ int ssl_set_psk( ssl_context *ssl, const unsigned char *psk, size_t psk_len,
memcpy( ssl->psk, psk, ssl->psk_len );
memcpy( ssl->psk_identity, psk_identity, ssl->psk_identity_len );
return( 0 );
}
void ssl_set_psk_cb( ssl_context *ssl,