Config.in 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  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_CERTGEN
  15. bool "Include certificate generation support"
  16. default y
  17. config WOLFSSL_HAS_TLSV10
  18. bool "Include TLS 1.0 support"
  19. default y
  20. config WOLFSSL_HAS_TLSV13
  21. bool "Include TLS 1.3 support"
  22. default y
  23. config WOLFSSL_HAS_SESSION_TICKET
  24. bool "Include session ticket support"
  25. default y
  26. config WOLFSSL_HAS_DTLS
  27. bool "Include DTLS support"
  28. default n
  29. config WOLFSSL_HAS_OCSP
  30. bool "Include OSCP stapling support"
  31. default y
  32. config WOLFSSL_HAS_WPAS
  33. bool "Include wpa_supplicant support"
  34. select WOLFSSL_HAS_ARC4
  35. select WOLFSSL_HAS_OCSP
  36. select WOLFSSL_HAS_SESSION_TICKET
  37. default y
  38. config WOLFSSL_HAS_ECC25519
  39. bool "Include ECC Curve 22519 support"
  40. default n
  41. config WOLFSSL_HAS_DEVCRYPTO
  42. bool
  43. choice
  44. prompt "Hardware Acceleration"
  45. default WOLFSSL_HAS_NO_HW
  46. config WOLFSSL_HAS_NO_HW
  47. bool "None"
  48. config WOLFSSL_HAS_AFALG
  49. bool "AF_ALG"
  50. config WOLFSSL_HAS_DEVCRYPTO_CBC
  51. bool "/dev/crytpo - AES-CBC-only"
  52. select WOLFSSL_HAS_DEVCRYPTO
  53. config WOLFSSL_HAS_DEVCRYPTO_AES
  54. bool "/dev/crypto - AES-only (all supported modes)"
  55. select WOLFSSL_HAS_DEVCRYPTO
  56. config WOLFSSL_HAS_DEVCRYPTO_FULL
  57. bool "/dev/crypto - full"
  58. select WOLFSSL_HAS_DEVCRYPTO
  59. endchoice
  60. endif