Skip to content

Commit 8c89224

Browse files
authored
Merge pull request #985 from Mbed-TLS/mbedtls-3.3.0rc2-pr
Mbedtls 3.3.0rc2 pr
2 parents 70f8157 + e90ed7d commit 8c89224

File tree

3 files changed

+8
-10
lines changed

3 files changed

+8
-10
lines changed

ChangeLog

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,6 @@ Mbed TLS ChangeLog (Sorted per branch, date)
22

33
= Mbed TLS 3.3.0 branch released 2022-12-14
44

5-
API changes
6-
* Add an ad-hoc key derivation function handling EC J-PAKE to PMS
7-
calculation that can be used to derive the session secret in TLS 1.2,
8-
as described in draft-cragie-tls-ecjpake-01. This can be achieved by
9-
using PSA_ALG_TLS12_ECJPAKE_TO_PMS as the key derivation algorithm.
10-
115
Default behavior changes
126
* Previously the macro MBEDTLS_SSL_DTLS_CONNECTION_ID implemented version 05
137
of the IETF draft, and was marked experimental and disabled by default.
@@ -103,6 +97,10 @@ Features
10397
implementations of raw key agreement through the key_agreement driver
10498
entry point. This entry point is specified in the proposed PSA driver
10599
interface, but had not yet been implemented.
100+
* Add an ad-hoc key derivation function handling EC J-PAKE to PMS
101+
calculation that can be used to derive the session secret in TLS 1.2,
102+
as described in draft-cragie-tls-ecjpake-01. This can be achieved by
103+
using PSA_ALG_TLS12_ECJPAKE_TO_PMS as the key derivation algorithm.
106104

107105
Security
108106
* Fix potential heap buffer overread and overwrite in DTLS if

library/CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -282,7 +282,7 @@ endif(USE_STATIC_MBEDTLS_LIBRARY)
282282
if(USE_SHARED_MBEDTLS_LIBRARY)
283283
set(CMAKE_LIBRARY_PATH ${CMAKE_CURRENT_BINARY_DIR})
284284
add_library(${mbedcrypto_target} SHARED ${src_crypto})
285-
set_target_properties(${mbedcrypto_target} PROPERTIES VERSION 3.3.0 SOVERSION 12)
285+
set_target_properties(${mbedcrypto_target} PROPERTIES VERSION 3.3.0 SOVERSION 13)
286286
target_link_libraries(${mbedcrypto_target} PUBLIC ${libs})
287287

288288
if(TARGET everest)
@@ -294,7 +294,7 @@ if(USE_SHARED_MBEDTLS_LIBRARY)
294294
target_link_libraries(${mbedx509_target} PUBLIC ${libs} ${mbedcrypto_target})
295295

296296
add_library(${mbedtls_target} SHARED ${src_tls})
297-
set_target_properties(${mbedtls_target} PROPERTIES VERSION 3.3.0 SOVERSION 18)
297+
set_target_properties(${mbedtls_target} PROPERTIES VERSION 3.3.0 SOVERSION 19)
298298
target_link_libraries(${mbedtls_target} PUBLIC ${libs} ${mbedx509_target})
299299
endif(USE_SHARED_MBEDTLS_LIBRARY)
300300

library/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,9 +47,9 @@ LOCAL_CFLAGS += -fPIC -fpic
4747
endif
4848
endif
4949

50-
SOEXT_TLS?=so.18
50+
SOEXT_TLS?=so.19
5151
SOEXT_X509?=so.4
52-
SOEXT_CRYPTO?=so.12
52+
SOEXT_CRYPTO?=so.13
5353

5454
# Set AR_DASH= (empty string) to use an ar implementation that does not accept
5555
# the - prefix for command line options (e.g. llvm-ar)

0 commit comments

Comments
 (0)