mirror of
https://github.com/espressif/ESP8266_RTOS_SDK.git
synced 2025-07-15 08:32:42 +08:00
Merge branch 'feature/ssl_add_dhm_config' into 'master'
Add DHM configuration to Kconfig See merge request sdk/ESP8266_RTOS_SDK!483
This commit is contained in:
@ -381,6 +381,12 @@ config MBEDTLS_ECDH_C
|
||||
help
|
||||
Enable ECDH. Needed to use ECDHE-xxx TLS ciphersuites.
|
||||
|
||||
config MBEDTLS_DHM_C
|
||||
bool "Diffie-Hellman-Merkle(DHM)"
|
||||
default y
|
||||
help
|
||||
Enable the Diffie-Hellman-Merkle module.
|
||||
|
||||
config MBEDTLS_ECDSA_C
|
||||
bool "Elliptic Curve DSA"
|
||||
depends on MBEDTLS_ECDH_C
|
||||
|
@ -2024,7 +2024,9 @@
|
||||
* See dhm.h for more details.
|
||||
*
|
||||
*/
|
||||
//#define MBEDTLS_DHM_C
|
||||
#ifdef CONFIG_MBEDTLS_DHM_C
|
||||
#define MBEDTLS_DHM_C
|
||||
#endif
|
||||
|
||||
/**
|
||||
* \def MBEDTLS_ECDH_C
|
||||
|
Reference in New Issue
Block a user