summaryrefslogtreecommitdiffstats
path: root/rules/gnutls.in
blob: 11fd963da7e1b9e9b034e25acffeab2398c77209 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
## SECTION=networking

menuconfig GNUTLS
	tristate
	select LIBTASN1
	select NETTLE
	select LIBKCAPI		if GNUTLS_AFALG
	select GCCLIBS_CXX	if GNUTLS_CXX
	select CRYPTODEV_API	if GNUTLS_CRYPTODEV && BUILDTIME
	prompt "gnutls                        "
	help
	  GnuTLS is a secure communications library implementing the SSL,
	  TLS and DTLS protocols and technologies around them.
	  It provides a simple C language application programming interface
	  (API) to access the secure communications protocols as well as
	  APIs to parse and write X.509, PKCS #12, OpenPGP and other required
	  structures. It is aimed to be portable and efficient with focus on
	  security and interoperability.

if GNUTLS

config GNUTLS_CXX
	bool
	prompt "install C++ runtime library"

config GNUTLS_CRYPTODEV
	bool
	prompt "enable cryptodev support"
	help
	  Enable the BSD cryptodev engine even if we are not using BSD.

config GNUTLS_AFALG
	bool
	prompt "enable AFALG support"

config GNUTLS_KTLS
	bool
	prompt "enable KTLS support"
	help
	  Kernel TLS offload. Sufficiently moderen kernel headers are needed.

config GNUTLS_OPENSSL
	bool
	prompt "openssl compatibility"
	help
	  Enables the OpenSSL compatibility support.

endif