immortalwrt/package/libs/openssl/Config.in

73 lines
1.2 KiB
Plaintext
Raw Normal View History

2017-09-06 19:19:45 +08:00
if PACKAGE_libopenssl
2019-02-13 23:15:34 +08:00
config OPENSSL_WITH_EC
bool
2019-02-13 23:15:34 +08:00
default y
prompt "Enable elliptic curve support"
2017-09-06 19:19:45 +08:00
2019-02-13 23:15:34 +08:00
config OPENSSL_WITH_EC2M
bool
depends on OPENSSL_WITH_EC
prompt "Enable ec2m support"
2019-02-13 23:15:34 +08:00
config OPENSSL_WITH_SSL3
2017-09-06 19:19:45 +08:00
bool
2019-02-13 23:15:34 +08:00
default n
prompt "Enable sslv3 support"
2017-09-06 19:19:45 +08:00
config OPENSSL_WITH_DEPRECATED
bool
default y
2019-02-13 23:15:34 +08:00
prompt "Include deprecated APIs"
2017-09-06 19:19:45 +08:00
config OPENSSL_NO_DEPRECATED
bool
default !OPENSSL_WITH_DEPRECATED
config OPENSSL_WITH_DTLS
bool
2019-02-13 23:15:34 +08:00
default n
prompt "Enable DTLS support"
2019-02-13 23:15:34 +08:00
config OPENSSL_WITH_COMPRESSION
bool
2019-02-13 23:15:34 +08:00
default n
prompt "Enable compression support"
2019-02-13 23:15:34 +08:00
config OPENSSL_WITH_NPN
bool
default y
2019-02-13 23:15:34 +08:00
prompt "Enable NPN support"
2017-09-06 19:19:45 +08:00
config OPENSSL_WITH_PSK
bool
default y
prompt "Enable PSK support"
2019-02-13 23:15:34 +08:00
config OPENSSL_WITH_SRP
bool
2019-02-13 23:15:34 +08:00
default y
prompt "Enable SRP support"
2019-02-13 23:15:34 +08:00
config OPENSSL_ENGINE_DIGEST
bool
2019-02-13 23:15:34 +08:00
depends on OPENSSL_ENGINE_CRYPTO
prompt "Digests acceleration support"
2019-02-13 23:15:34 +08:00
config OPENSSL_HARDWARE_SUPPORT
bool
2019-02-13 23:15:34 +08:00
default n
prompt "Enable hardware support"
2019-02-13 23:15:34 +08:00
config OPENSSL_OPTIMIZE_SPEED
bool
2019-02-13 23:15:34 +08:00
default n
prompt "Enable optimization for speed instead of size"
2019-02-13 23:15:34 +08:00
endif
2017-09-06 19:19:45 +08:00
config OPENSSL_ENGINE_CRYPTO
bool
2019-02-13 23:15:34 +08:00
select OPENSSL_HARDWARE_SUPPORT
prompt "Crypto acceleration support" if PACKAGE_libopenssl