Config.in 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. if PACKAGE_libwolfssl
  2. config WOLFSSL_HAS_AES_CCM
  3. bool "Include AES-CCM support"
  4. default y
  5. config WOLFSSL_HAS_AES_GCM
  6. bool "Include AES-GCM support"
  7. default y
  8. config WOLFSSL_HAS_CHACHA
  9. bool "Include ChaCha cipher suite support"
  10. default n
  11. config WOLFSSL_HAS_ECC
  12. bool "Include ECC (Elliptic Curve Cryptography) support"
  13. default y
  14. config WOLFSSL_HAS_DH
  15. bool "Include DH (Diffie-Hellman) support"
  16. default y
  17. config WOLFSSL_HAS_ARC4
  18. bool "Include ARC4 support"
  19. default y
  20. config WOLFSSL_HAS_DES3
  21. bool "Include DES3 (Tripple-DES) support"
  22. default y
  23. config WOLFSSL_HAS_PSK
  24. bool "Include PKS (Pre Share Key) support"
  25. default y
  26. config WOLFSSL_HAS_SESSION_TICKET
  27. bool "Include session ticket support"
  28. default y
  29. config WOLFSSL_HAS_DTLS
  30. bool "Include DTLS support"
  31. default n
  32. config WOLFSSL_HAS_OCSP
  33. bool "Include OSCP support"
  34. default y
  35. config WOLFSSL_HAS_WPAS
  36. bool "Include wpa_supplicant support"
  37. default y
  38. config WOLFSSL_HAS_ECC25519
  39. bool "Include ECC Curve 22519 support"
  40. depends on WOLFSSL_HAS_ECC
  41. default n
  42. config WOLFSSL_HAS_POLY_1305
  43. bool "Include Poly-1305 support"
  44. default n
  45. endif