Kconfig 564 B

123456789101112131415161718192021222324252627
  1. #
  2. # TLS configuration
  3. #
  4. config TLS
  5. tristate "Transport Layer Security support"
  6. depends on INET
  7. select CRYPTO
  8. select CRYPTO_AES
  9. select CRYPTO_GCM
  10. select STREAM_PARSER
  11. select NET_SOCK_MSG
  12. default n
  13. ---help---
  14. Enable kernel support for TLS protocol. This allows symmetric
  15. encryption handling of the TLS protocol to be done in-kernel.
  16. If unsure, say N.
  17. config TLS_DEVICE
  18. bool "Transport Layer Security HW offload"
  19. depends on TLS
  20. select SOCK_VALIDATE_XMIT
  21. default n
  22. help
  23. Enable kernel support for HW offload of the TLS protocol.
  24. If unsure, say N.