Dave Watson | 3c4d755 | 2017-06-14 11:37:39 -0700 | [diff] [blame] | 1 | # |
| 2 | # TLS configuration |
| 3 | # |
| 4 | config TLS |
| 5 | tristate "Transport Layer Security support" |
David S. Miller | 54144b4 | 2017-06-16 11:28:49 -0400 | [diff] [blame] | 6 | depends on INET |
Dave Watson | d807ec6 | 2017-06-17 08:25:13 -0700 | [diff] [blame] | 7 | select CRYPTO |
| 8 | select CRYPTO_AES |
| 9 | select CRYPTO_GCM |
Dave Watson | c46234e | 2018-03-22 10:10:35 -0700 | [diff] [blame] | 10 | select STREAM_PARSER |
Dave Watson | d807ec6 | 2017-06-17 08:25:13 -0700 | [diff] [blame] | 11 | default n |
Dave Watson | 3c4d755 | 2017-06-14 11:37:39 -0700 | [diff] [blame] | 12 | ---help--- |
| 13 | Enable kernel support for TLS protocol. This allows symmetric |
| 14 | encryption handling of the TLS protocol to be done in-kernel. |
| 15 | |
Dave Watson | d807ec6 | 2017-06-17 08:25:13 -0700 | [diff] [blame] | 16 | If unsure, say N. |
Ilya Lesokhin | e8f6979 | 2018-04-30 10:16:16 +0300 | [diff] [blame] | 17 | |
| 18 | config TLS_DEVICE |
| 19 | bool "Transport Layer Security HW offload" |
| 20 | depends on TLS |
| 21 | select SOCK_VALIDATE_XMIT |
| 22 | default n |
| 23 | help |
| 24 | Enable kernel support for HW offload of the TLS protocol. |
| 25 | |
| 26 | If unsure, say N. |