1
0
mirror of https://git.openwrt.org/feed/packages.git synced 2024-06-26 09:37:44 +02:00
openwrt-packages/libs/gnutls/Config.in
Ian Pozella e1b0adf5f2 gnutls: optionally disable tpm support
Add option that allows you to explicitly disable use of the tpm
otherwise if a tss stack such as trousers is found by gnutls build
system then it will use it which will cause a build failure when
PKCS11 support is not enabled.

Signed-off-by: Ian Pozella <Ian.Pozella@imgtec.com>
2016-09-15 15:29:49 +01:00

57 lines
979 B
Plaintext

# gnutls avanced configuration
menu "Configuration"
depends on PACKAGE_libgnutls
config GNUTLS_DTLS_SRTP
bool "enable DTLS SRTP support"
default y
config GNUTLS_ALPN
bool "enable ALPN support"
default y
config GNUTLS_OCSP
bool "enable ocsp support"
default y
config GNUTLS_CRYPTODEV
bool "enable /dev/crypto support"
default n
config GNUTLS_HEARTBEAT
bool "enable DTLS heartbeat support"
default y
config GNUTLS_OPENPGP
bool "enable OPENPGP authentication support"
default n
config GNUTLS_SRP
bool "enable SRP authentication support"
default n
config GNUTLS_PSK
bool "enable PSK authentication support"
default y
config GNUTLS_ANON
bool "enable anonymous authentication support"
default y
config GNUTLS_TPM
bool "enable tpm support"
select GNUTLS_PKCS11
default n
config GNUTLS_PKCS11
bool "enable smart card (PKCS11) support"
select GNUTLS_EXT_LIBTASN1
default n
config GNUTLS_EXT_LIBTASN1
bool "use external libtasn1"
default n
endmenu