1config BR2_PACKAGE_WOLFSSL 2 bool "wolfssl" 3 depends on BR2_TOOLCHAIN_HAS_THREADS 4 help 5 The wolfSSL embedded SSL library (formerly CyaSSL) is a 6 lightweight, portable, C-language-based SSL/TLS library 7 targeted at IoT, embedded, and RTOS environments primarily 8 because of its size, speed, and feature set. 9 10 https://www.wolfssl.com/ 11 12if BR2_PACKAGE_WOLFSSL 13 14config BR2_PACKAGE_WOLFSSL_ALL 15 bool "enable all features, except SSLv3" 16 help 17 Enable all wolfSSL features, except SSL version 3.0 support. 18 19config BR2_PACKAGE_WOLFSSL_SSLV3 20 bool "enable SSLv3" 21 help 22 Enable SSL version 3.0 support. 23 24endif 25 26comment "wolfssl needs a toolchain w/ threads" 27 depends on !BR2_TOOLCHAIN_HAS_THREADS 28