Config.in 963 B

1234567891011121314151617181920212223242526272829303132
  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.
  8. https://tls.mbed.org/
  9. if BR2_PACKAGE_MBEDTLS
  10. config BR2_PACKAGE_MBEDTLS_PROGRAMS
  11. bool "mbedtls programs"
  12. depends on BR2_USE_MMU # fork()
  13. help
  14. This option enables the installation and the build of
  15. mbed TLS companion programs.
  16. config BR2_PACKAGE_MBEDTLS_COMPRESSION
  17. bool "enable compression support"
  18. select BR2_PACKAGE_ZLIB
  19. help
  20. Enable support for compression of the content data before it
  21. enters the secure channel as described in RFC 3749.
  22. Warning: TLS compression may make you vulnerable to the
  23. CRIME attack. You should not enable it unless you know for
  24. sure CRIME and similar attacks are not applicable to your
  25. particular situation.
  26. endif