xref: /OK3568_Linux_fs/buildroot/package/mbedtls/Config.in (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1config BR2_PACKAGE_MBEDTLS
2	bool "mbedtls"
3	help
4	  mbed TLS (formerly known as PolarSSL) makes it trivially easy
5	  for developers to include cryptographic and SSL/TLS
6	  capabilities in their (embedded) products, facilitating this
7	  functionality with a minimal coding footprint.
8
9	  https://tls.mbed.org/
10
11if BR2_PACKAGE_MBEDTLS
12
13config BR2_PACKAGE_MBEDTLS_PROGRAMS
14	bool "mbedtls programs"
15	depends on BR2_USE_MMU # fork()
16	help
17	  This option enables the installation and the build of
18	  mbed TLS companion programs.
19
20config BR2_PACKAGE_MBEDTLS_COMPRESSION
21	bool "enable compression support"
22	select BR2_PACKAGE_ZLIB
23	help
24	  Enable support for compression of the content data before it
25	  enters the secure channel as described in RFC 3749.
26
27	  Warning: TLS compression may make you vulnerable to the
28	  CRIME attack. You should not enable it unless you know for
29	  sure CRIME and similar attacks are not applicable to your
30	  particular situation.
31
32endif
33