mirror of
https://github.com/espressif/ESP8266_RTOS_SDK.git
synced 2025-06-01 08:09:49 +08:00
20 lines
368 B
Plaintext
20 lines
368 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"
|
|
config SSL_USING_WOLFSSL
|
|
bool "wolfSSL"
|
|
endchoice
|
|
|
|
endmenu
|