Config.in 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  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. if WOLFSSL_HAS_AES_CCM
  41. comment "! Hardware Acceleration does not build with AES-CCM enabled"
  42. endif
  43. if !WOLFSSL_HAS_AES_CCM
  44. choice
  45. prompt "Hardware Acceleration"
  46. default WOLFSSL_HAS_NO_HW
  47. config WOLFSSL_HAS_NO_HW
  48. bool "None"
  49. config WOLFSSL_HAS_AFALG
  50. bool "AF_ALG"
  51. config WOLFSSL_HAS_DEVCRYPTO_AES
  52. bool "/dev/crypto - AES-only"
  53. select WOLFSSL_HAS_DEVCRYPTO
  54. config WOLFSSL_HAS_DEVCRYPTO_FULL
  55. bool "/dev/crypto - full"
  56. select WOLFSSL_HAS_DEVCRYPTO
  57. endchoice
  58. endif
  59. endif