mirror of
git://git.openwrt.org/openwrt/openwrt.git
synced 2025-01-05 06:02:29 +00:00
da654a0c42
This patch adds EC compilation options to openssl OPENSSL_WITH_EC is needed for authsae (OPENSSL_WITH_EC2M isn't) Activating ec (but not ec2m) in openssl take 35Ko more on ar71xx (ipk size) Activating both take 52Ko. Signed-off-by: Etienne CHAMPETIER <etienne.champetier@free.fr> SVN-Revision: 37523
23 lines
425 B
Plaintext
23 lines
425 B
Plaintext
menu "Configuration"
|
|
depends on PACKAGE_libopenssl
|
|
|
|
config OPENSSL_WITH_EC
|
|
bool
|
|
prompt "Enable elliptic curve support"
|
|
|
|
config OPENSSL_WITH_EC2M
|
|
bool
|
|
depends on OPENSSL_WITH_EC
|
|
prompt "Enable ec2m support"
|
|
|
|
config OPENSSL_ENGINE_CRYPTO
|
|
bool
|
|
prompt "Crypto acceleration support"
|
|
|
|
config OPENSSL_ENGINE_DIGEST
|
|
bool
|
|
depends on OPENSSL_ENGINE_CRYPTO
|
|
prompt "Digests acceleration support"
|
|
|
|
endmenu
|