Config.in 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. if PACKAGE_libopenssl
  2. config OPENSSL_WITH_EC
  3. bool
  4. default y
  5. prompt "Enable elliptic curve support"
  6. config OPENSSL_WITH_EC2M
  7. bool
  8. depends on OPENSSL_WITH_EC
  9. prompt "Enable ec2m support"
  10. config OPENSSL_WITH_SSL3
  11. bool
  12. default n
  13. prompt "Enable sslv3 support"
  14. config OPENSSL_WITH_DEPRECATED
  15. bool
  16. default y
  17. prompt "Include deprecated APIs"
  18. config OPENSSL_NO_DEPRECATED
  19. bool
  20. default !OPENSSL_WITH_DEPRECATED
  21. config OPENSSL_WITH_DTLS
  22. bool
  23. default n
  24. prompt "Enable DTLS support"
  25. config OPENSSL_WITH_COMPRESSION
  26. bool
  27. default n
  28. prompt "Enable compression support"
  29. config OPENSSL_WITH_NPN
  30. bool
  31. default y
  32. prompt "Enable NPN support"
  33. config OPENSSL_WITH_PSK
  34. bool
  35. default y
  36. prompt "Enable PSK support"
  37. config OPENSSL_WITH_SRP
  38. bool
  39. default y
  40. prompt "Enable SRP support"
  41. config OPENSSL_ENGINE_DIGEST
  42. bool
  43. depends on OPENSSL_ENGINE_CRYPTO
  44. prompt "Digests acceleration support"
  45. config OPENSSL_HARDWARE_SUPPORT
  46. bool
  47. default n
  48. prompt "Enable hardware support"
  49. config OPENSSL_OPTIMIZE_SPEED
  50. bool
  51. default n
  52. prompt "Enable optimization for speed instead of size"
  53. endif
  54. config OPENSSL_ENGINE_CRYPTO
  55. bool
  56. select OPENSSL_HARDWARE_SUPPORT
  57. prompt "Crypto acceleration support" if PACKAGE_libopenssl