1config BR2_PACKAGE_GNUTLS
2	bool "gnutls"
3	# https://gitlab.com/gnutls/gnutls/issues/203
4	depends on !BR2_STATIC_LIBS
5	depends on BR2_USE_WCHAR
6	select BR2_PACKAGE_LIBTASN1
7	select BR2_PACKAGE_LIBUNISTRING
8	select BR2_PACKAGE_NETTLE
9	help
10	  GnuTLS is a secure communications library implementing the SSL
11	  and TLS protocols and technologies around them.
12
13	  https://www.gnutls.org/
14
15if BR2_PACKAGE_GNUTLS
16
17config BR2_PACKAGE_GNUTLS_OPENSSL
18	bool "OpenSSL compatibility library"
19	help
20	  Install OpenSSL compatibility library.
21
22config BR2_PACKAGE_GNUTLS_TOOLS
23	bool "install tools"
24	help
25	  Install GnuTLS command line tools for various cryptographic
26	  tasks.
27
28config BR2_PACKAGE_GNUTLS_ENABLE_SSL2
29	bool "enable SSLv2"
30	help
31	  Enable SSLv2 protocol.
32
33config BR2_PACKAGE_GNUTLS_ENABLE_GOST
34	bool "enable GOST"
35	help
36	  Enable GOST cipher.
37
38endif
39
40comment "gnutls needs a toolchain w/ wchar, dynamic library"
41	depends on !BR2_USE_WCHAR || BR2_STATIC_LIBS
42