openwrtv3/package/libs/wolfssl/Config.in
Daniel Golle c67a9bed20 wolfssl: fix options and add support for wpa_supplicant features
Some options' default values have been changed upstream, others were
accidentally inverted (CONFIG_WOLFSSL_HAS_DES3). Also add options
needed to build hostapd/wpa_supplicant against wolfssl.

Signed-off-by: Daniel Golle <daniel@makrotopia.org>
2018-05-02 09:18:26 +02:00

60 lines
1.1 KiB
Text

if PACKAGE_libwolfssl
config WOLFSSL_HAS_AES_CCM
bool "Include AES-CCM support"
default n
config WOLFSSL_HAS_AES_GCM
bool "Include AES-GCM support"
default n
config WOLFSSL_HAS_CHACHA
bool "Include ChaCha cipher suite support"
default n
config WOLFSSL_HAS_ECC
bool "Include ECC (Elliptic Curve Cryptography) support"
default y
config WOLFSSL_HAS_DH
bool "Include DH (Diffie-Hellman) support"
default n
config WOLFSSL_HAS_ARC4
bool "Include ARC4 support"
default n
config WOLFSSL_HAS_DES3
bool "Include DES3 (Tripple-DES) support"
default n
config WOLFSSL_HAS_PSK
bool "Include PKS (Pre Share Key) support"
default n
config WOLFSSL_HAS_SESSION_TICKET
bool "Include session ticket support"
default n
config WOLFSSL_HAS_DTLS
bool "Include DTLS support"
default n
config WOLFSSL_HAS_OCSP
bool "Include OSCP support"
default n
config WOLFSSL_HAS_WPAS
bool "Include wpa_supplicant support"
default n
config WOLFSSL_HAS_ECC25519
bool "Include ECC Curve 22519 support"
depends on WOLFSSL_HAS_ECC
default n
config WOLFSSL_HAS_POLY_1305
bool "Include Poly-1305 support"
default n
endif