Skip to content

Commit f2cd1a3

Browse files
gstraussdpgeorge
authored andcommitted
lib/mbedtls: Update to mbedtls v3.6.2.
Signed-off-by: Glenn Strauss <[email protected]>
1 parent 624bd48 commit f2cd1a3

File tree

4 files changed

+4
-1
lines changed

4 files changed

+4
-1
lines changed

Diff for: extmod/extmod.cmake

+1
Original file line numberDiff line numberDiff line change
@@ -219,6 +219,7 @@ if(MICROPY_SSL_MBEDTLS)
219219
${MICROPY_LIB_MBEDTLS_DIR}/library/pkcs12.c
220220
${MICROPY_LIB_MBEDTLS_DIR}/library/pkcs5.c
221221
${MICROPY_LIB_MBEDTLS_DIR}/library/pkparse.c
222+
${MICROPY_LIB_MBEDTLS_DIR}/library/pk_ecc.c
222223
${MICROPY_LIB_MBEDTLS_DIR}/library/pk_wrap.c
223224
${MICROPY_LIB_MBEDTLS_DIR}/library/pkwrite.c
224225
${MICROPY_LIB_MBEDTLS_DIR}/library/platform.c

Diff for: extmod/extmod.mk

+1
Original file line numberDiff line numberDiff line change
@@ -294,6 +294,7 @@ SRC_THIRDPARTY_C += $(addprefix $(MBEDTLS_DIR)/library/,\
294294
pkcs12.c \
295295
pkcs5.c \
296296
pkparse.c \
297+
pk_ecc.c \
297298
pk_wrap.c \
298299
pkwrite.c \
299300
platform.c \

Diff for: extmod/mbedtls/mbedtls_config_common.h

+1
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,7 @@
7979
#define MBEDTLS_OID_C
8080
#define MBEDTLS_PKCS5_C
8181
#define MBEDTLS_PK_C
82+
#define MBEDTLS_PK_HAVE_ECC_KEYS
8283
#define MBEDTLS_PK_PARSE_C
8384
#define MBEDTLS_PLATFORM_C
8485
#define MBEDTLS_RSA_C

Diff for: lib/mbedtls

0 commit comments

Comments
 (0)