mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-28 01:28:59 +00:00
3167a57f72
This includes a fix for a medium-level potential cache attack with a
variant of Bleichenbacher’s attack. Patches were refreshed.
Increased FP_MAX_BITS to allow 4096-bit RSA keys.
Fixed poly1305 build option, and some Makefile updates.
Signed-off-by: Eneas U de Queiroz <cotequeiroz@gmail.com>
(cherry picked from commit 2792daab5a
)
61 lines
1.1 KiB
Plaintext
61 lines
1.1 KiB
Plaintext
if PACKAGE_libwolfssl
|
|
|
|
config WOLFSSL_HAS_AES_CCM
|
|
bool "Include AES-CCM support"
|
|
default y
|
|
|
|
config WOLFSSL_HAS_AES_GCM
|
|
bool "Include AES-GCM support"
|
|
default y
|
|
|
|
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 y
|
|
|
|
config WOLFSSL_HAS_ARC4
|
|
bool "Include ARC4 support"
|
|
default y
|
|
|
|
config WOLFSSL_HAS_DES3
|
|
bool "Include DES3 (Tripple-DES) support"
|
|
default y
|
|
|
|
config WOLFSSL_HAS_PSK
|
|
bool "Include PKS (Pre Share Key) support"
|
|
default y
|
|
|
|
config WOLFSSL_HAS_SESSION_TICKET
|
|
bool "Include session ticket support"
|
|
default y
|
|
|
|
config WOLFSSL_HAS_DTLS
|
|
bool "Include DTLS support"
|
|
default n
|
|
|
|
config WOLFSSL_HAS_OCSP
|
|
bool "Include OSCP support"
|
|
default y
|
|
|
|
config WOLFSSL_HAS_WPAS
|
|
bool "Include wpa_supplicant support"
|
|
default y
|
|
|
|
config WOLFSSL_HAS_ECC25519
|
|
bool "Include ECC Curve 22519 support"
|
|
depends on WOLFSSL_HAS_ECC
|
|
default n
|
|
|
|
config WOLFSSL_HAS_POLY1305
|
|
bool "Include Poly-1305 support"
|
|
default n
|
|
|
|
endif
|