mirror of
https://github.com/espressif/ESP8266_RTOS_SDK.git
synced 2025-07-15 08:32:42 +08:00

Put mbedtls, axtls, openssl to ssl, also add kconfig to choose ssl library. Default use mbedtls.
18 lines
324 B
Plaintext
18 lines
324 B
Plaintext
menu "SSL"
|
|
|
|
choice SSL_LIBRARY_CHOOSE
|
|
prompt "Choose SSL/TLS library"
|
|
default SSL_USING_MBEDTLS
|
|
help
|
|
Choose the SSL/TLS library which you want to use.
|
|
|
|
Currently we support mbedTLS and axTLS.
|
|
|
|
config SSL_USING_MBEDTLS
|
|
bool "mbedTLS"
|
|
config SSL_USING_AXTLS
|
|
bool "axTLS"
|
|
endchoice
|
|
|
|
endmenu
|