lede-packages-rs

git clone git://archive.git.mtrnord.blog/MTRNord/lede-packages-rs.git
Log | Files | Refs | README | LICENSE

Config.in (979B)


      1 # gnutls avanced configuration
      2 
      3 menu "Configuration"
      4 	depends on PACKAGE_libgnutls
      5 
      6 config GNUTLS_DTLS_SRTP
      7 	bool "enable DTLS SRTP support"
      8 	default y
      9 
     10 config GNUTLS_ALPN
     11 	bool "enable ALPN support"
     12 	default y
     13 
     14 config GNUTLS_OCSP
     15 	bool "enable ocsp support"
     16 	default y
     17 
     18 config GNUTLS_CRYPTODEV
     19 	bool "enable /dev/crypto support"
     20 	default n
     21 
     22 config GNUTLS_HEARTBEAT
     23 	bool "enable DTLS heartbeat support"
     24 	default y
     25 
     26 config GNUTLS_OPENPGP
     27 	bool "enable OPENPGP authentication support"
     28 	default n
     29 
     30 config GNUTLS_SRP
     31 	bool "enable SRP authentication support"
     32 	default n
     33 
     34 config GNUTLS_PSK
     35 	bool "enable PSK authentication support"
     36 	default y
     37 
     38 config GNUTLS_ANON
     39 	bool "enable anonymous authentication support"
     40 	default y
     41 
     42 config GNUTLS_TPM
     43 	bool "enable tpm support"
     44 	select GNUTLS_PKCS11
     45 	default n
     46 
     47 config GNUTLS_PKCS11
     48 	bool "enable smart card (PKCS11) support"
     49 	select GNUTLS_EXT_LIBTASN1
     50 	default n
     51 
     52 config GNUTLS_EXT_LIBTASN1
     53 	bool "use external libtasn1"
     54 	default n
     55 
     56 endmenu