Files
Wu Jian Gang 7782d6adf2 feat(ssl): Restructure ssl folder
Put mbedtls, axtls, openssl to ssl, also add kconfig to choose ssl library.
Default use mbedtls.
2018-04-09 20:09:27 +08:00

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