wolfssl: fix options and add support for wpa_supplicant features
[openwrt/openwrt.git] / package / libs / wolfssl / Config.in
1 if PACKAGE_libwolfssl
2
3 config WOLFSSL_HAS_AES_CCM
4 bool "Include AES-CCM support"
5 default n
6
7 config WOLFSSL_HAS_AES_GCM
8 bool "Include AES-GCM support"
9 default n
10
11 config WOLFSSL_HAS_CHACHA
12 bool "Include ChaCha cipher suite support"
13 default n
14
15 config WOLFSSL_HAS_ECC
16 bool "Include ECC (Elliptic Curve Cryptography) support"
17 default y
18
19 config WOLFSSL_HAS_DH
20 bool "Include DH (Diffie-Hellman) support"
21 default n
22
23 config WOLFSSL_HAS_ARC4
24 bool "Include ARC4 support"
25 default n
26
27 config WOLFSSL_HAS_DES3
28 bool "Include DES3 (Tripple-DES) support"
29 default n
30
31 config WOLFSSL_HAS_PSK
32 bool "Include PKS (Pre Share Key) support"
33 default n
34
35 config WOLFSSL_HAS_SESSION_TICKET
36 bool "Include session ticket support"
37 default n
38
39 config WOLFSSL_HAS_DTLS
40 bool "Include DTLS support"
41 default n
42
43 config WOLFSSL_HAS_OCSP
44 bool "Include OSCP support"
45 default n
46
47 config WOLFSSL_HAS_WPAS
48 bool "Include wpa_supplicant support"
49 default n
50
51 config WOLFSSL_HAS_ECC25519
52 bool "Include ECC Curve 22519 support"
53 depends on WOLFSSL_HAS_ECC
54 default n
55
56 config WOLFSSL_HAS_POLY_1305
57 bool "Include Poly-1305 support"
58 default n
59
60 endif