cyassl: make CyaSSL/WolfSSL more configurable
The default configuration might not be suitable for every use case. Add options to enable/disable additional options. Signed-off-by: Andreas Schultz <aschultz@tpip.net>
This commit is contained in:
parent
32f4777530
commit
b9e3e38e79
2 changed files with 5 additions and 4 deletions
|
@ -3,15 +3,15 @@ menu "Configuration"
|
|||
|
||||
config CYASSL_HAS_AES_CCM
|
||||
bool "Include AES-CCM support"
|
||||
default y
|
||||
default n
|
||||
|
||||
config CYASSL_HAS_AES_GCM
|
||||
bool "Include AES-GCM support"
|
||||
default y
|
||||
default n
|
||||
|
||||
config CYASSL_HAS_CHACHA
|
||||
bool "Include ChaCha cipher suite support"
|
||||
default y
|
||||
default n
|
||||
|
||||
config CYASSL_HAS_ECC
|
||||
bool "Include ECC (Elliptic Curve Cryptography) support"
|
||||
|
@ -19,7 +19,7 @@ config CYASSL_HAS_ECC
|
|||
|
||||
config CYASSL_HAS_DH
|
||||
bool "Include DH (Diffie-Hellman) support"
|
||||
default y
|
||||
default n
|
||||
|
||||
config CYASSL_HAS_ARC4
|
||||
bool "Include ARC4 support"
|
||||
|
|
|
@ -28,6 +28,7 @@ define Package/libcyassl
|
|||
CATEGORY:=Libraries
|
||||
TITLE:=CyaSSL library
|
||||
URL:=http://www.wolfssl.com/
|
||||
MENU:=1
|
||||
endef
|
||||
|
||||
define Package/libcyassl/description
|
||||
|
|
Loading…
Reference in a new issue