python-cryptography: bump to version 1.7.2
[buildroot-gz.git] / package / mbedtls / Config.in
blobed63f2da58fa95fd12de4cedf98c8fa918738029
1 config 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.
9           https://tls.mbed.org/
11 if BR2_PACKAGE_MBEDTLS
13 config 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.
20 config 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 CRIME
28           attack. You should not enable it unless you know for sure CRIME
29           and similar attacks are not applicable to your particular
30           situation.
32 endif