]>
Commit | Line | Data |
---|---|---|
3c4d7559 DW |
1 | # |
2 | # TLS configuration | |
3 | # | |
4 | config TLS | |
5 | tristate "Transport Layer Security support" | |
54144b48 | 6 | depends on INET |
d807ec65 DW |
7 | select CRYPTO |
8 | select CRYPTO_AES | |
9 | select CRYPTO_GCM | |
c46234eb | 10 | select STREAM_PARSER |
d829e9c4 | 11 | select NET_SOCK_MSG |
d807ec65 | 12 | default n |
3c4d7559 DW |
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 | ||
d807ec65 | 17 | If unsure, say N. |
e8f69799 IL |
18 | |
19 | config TLS_DEVICE | |
20 | bool "Transport Layer Security HW offload" | |
21 | depends on TLS | |
22 | select SOCK_VALIDATE_XMIT | |
23 | default n | |
24 | help | |
25 | Enable kernel support for HW offload of the TLS protocol. | |
26 | ||
27 | If unsure, say N. |