123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- if PACKAGE_libopenssl
- config OPENSSL_WITH_EC
- bool
- default y
- prompt "Enable elliptic curve support"
- config OPENSSL_WITH_EC2M
- bool
- depends on OPENSSL_WITH_EC
- prompt "Enable ec2m support"
- config OPENSSL_WITH_SSL3
- bool
- default n
- prompt "Enable sslv3 support"
- config OPENSSL_WITH_DEPRECATED
- bool
- default y
- prompt "Include deprecated APIs"
- config OPENSSL_NO_DEPRECATED
- bool
- default !OPENSSL_WITH_DEPRECATED
- config OPENSSL_WITH_DTLS
- bool
- default n
- prompt "Enable DTLS support"
- config OPENSSL_WITH_COMPRESSION
- bool
- default n
- prompt "Enable compression support"
- config OPENSSL_WITH_NPN
- bool
- default y
- prompt "Enable NPN support"
- config OPENSSL_WITH_PSK
- bool
- default y
- prompt "Enable PSK support"
- config OPENSSL_WITH_SRP
- bool
- default y
- prompt "Enable SRP support"
- config OPENSSL_ENGINE_DIGEST
- bool
- depends on OPENSSL_ENGINE_CRYPTO
- prompt "Digests acceleration support"
- config OPENSSL_HARDWARE_SUPPORT
- bool
- default n
- prompt "Enable hardware support"
- config OPENSSL_OPTIMIZE_SPEED
- bool
- default n
- prompt "Enable optimization for speed instead of size"
- endif
- config OPENSSL_ENGINE_CRYPTO
- bool
- select OPENSSL_HARDWARE_SUPPORT
- prompt "Crypto acceleration support" if PACKAGE_libopenssl
|