buildroot/package/wolfssl/Config.in
Sergio Prado 82eec03c59 wolfssl: new package
The wolfSSL embedded SSL library is a lightweight and portable
SSL/TLS library.

Tested on Beaglebone Black using a tool called testsuite that
comes with wolfssl source code inside the testsuite/ directory.
To build it, we have to pass --enable-examples in the configure,
and then manually copy the binary to the rootfs. Also, to use
this tool, you will we need to copy the certs/* directory to the
rootfs.

Build-tested with test-pkg script.

Signed-off-by: Sergio Prado <sergio.prado@e-labworks.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
2017-12-30 21:20:35 +01:00

28 lines
702 B
Plaintext

config BR2_PACKAGE_WOLFSSL
bool "wolfssl"
depends on BR2_TOOLCHAIN_HAS_THREADS
help
The wolfSSL embedded SSL library (formerly CyaSSL) is a
lightweight, portable, C-language-based SSL/TLS library
targeted at IoT, embedded, and RTOS environments primarily
because of its size, speed, and feature set.
https://www.wolfssl.com/
if BR2_PACKAGE_WOLFSSL
config BR2_PACKAGE_WOLFSSL_ALL
bool "enable all features, except SSLv3"
help
Enable all wolfSSL features, except SSL version 3.0 support.
config BR2_PACKAGE_WOLFSSL_SSLV3
bool "enable SSLv3"
help
Enable SSL version 3.0 support.
endif
comment "wolfssl needs a toolchain w/ threads"
depends on !BR2_TOOLCHAIN_HAS_THREADS