Config.in 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. if PACKAGE_libwolfssl
  2. config WOLFSSL_HAS_AES_CCM
  3. bool "Include AES-CCM support"
  4. default y
  5. config WOLFSSL_HAS_CHACHA_POLY
  6. bool "Include ChaCha20-Poly1305 cipher suite support"
  7. default y
  8. config WOLFSSL_HAS_DH
  9. bool "Include DH (Diffie-Hellman) support"
  10. default y
  11. config WOLFSSL_HAS_ARC4
  12. bool "Include ARC4 support"
  13. default y
  14. config WOLFSSL_HAS_TLSV10
  15. bool "Include TLS 1.0 support"
  16. default y
  17. config WOLFSSL_HAS_TLSV13
  18. bool "Include TLS 1.3 support"
  19. default y
  20. config WOLFSSL_HAS_SESSION_TICKET
  21. bool "Include session ticket support"
  22. default y
  23. config WOLFSSL_HAS_DTLS
  24. bool "Include DTLS support"
  25. default n
  26. config WOLFSSL_HAS_OCSP
  27. bool "Include OSCP stapling support"
  28. default y
  29. config WOLFSSL_HAS_WPAS
  30. bool "Include wpa_supplicant support"
  31. select WOLFSSL_HAS_ARC4
  32. select WOLFSSL_HAS_OCSP
  33. select WOLFSSL_HAS_SESSION_TICKET
  34. default y
  35. config WOLFSSL_HAS_ECC25519
  36. bool "Include ECC Curve 22519 support"
  37. default n
  38. config WOLFSSL_HAS_DEVCRYPTO
  39. bool
  40. choice
  41. prompt "Hardware Acceleration"
  42. default WOLFSSL_HAS_NO_HW
  43. config WOLFSSL_HAS_NO_HW
  44. bool "None"
  45. config WOLFSSL_HAS_AFALG
  46. bool "AF_ALG"
  47. config WOLFSSL_HAS_DEVCRYPTO_CBC
  48. bool "/dev/crytpo - AES-CBC-only"
  49. select WOLFSSL_HAS_DEVCRYPTO
  50. config WOLFSSL_HAS_DEVCRYPTO_AES
  51. bool "/dev/crypto - AES-only (all supported modes)"
  52. select WOLFSSL_HAS_DEVCRYPTO
  53. config WOLFSSL_HAS_DEVCRYPTO_FULL
  54. bool "/dev/crypto - full"
  55. select WOLFSSL_HAS_DEVCRYPTO
  56. endchoice
  57. endif