feat(mbedtls): update to version 3.6.4

This commit is contained in:
Ashish Sharma
2025-07-01 16:51:06 +08:00
parent 37733a877c
commit 9c546002cb
5 changed files with 30 additions and 3 deletions

View File

@@ -1143,6 +1143,24 @@
#undef MBEDTLS_SSL_KEEP_PEER_CERTIFICATE
#endif
/**
* \def MBEDTLS_SSL_KEYING_MATERIAL_EXPORT
*
* When this option is enabled, the client and server can extract additional
* shared symmetric keys after an SSL handshake using the function
* mbedtls_ssl_export_keying_material().
*
* The process for deriving the keys is specified in RFC 5705 for TLS 1.2 and
* in RFC 8446, Section 7.5, for TLS 1.3.
*
* Comment this macro to disable mbedtls_ssl_export_keying_material().
*/
#ifdef CONFIG_MBEDTLS_SSL_KEYING_MATERIAL_EXPORT
#define MBEDTLS_SSL_KEYING_MATERIAL_EXPORT
#else
#undef MBEDTLS_SSL_KEYING_MATERIAL_EXPORT
#endif
/**
* \def MBEDTLS_SSL_CBC_RECORD_SPLITTING
*