1if PACKAGE_libopenssl
2
3config OPENSSL_WITH_EC
4	bool
5	default y
6	prompt "Enable elliptic curve support"
7
8config OPENSSL_WITH_EC2M
9        bool
10        depends on OPENSSL_WITH_EC
11        prompt "Enable ec2m support"
12
13config OPENSSL_WITH_SSL3
14	bool
15	default n
16	prompt "Enable sslv3 support"
17
18config OPENSSL_ENGINE_DIGEST
19	bool
20	depends on OPENSSL_ENGINE_CRYPTO
21	prompt "Digests acceleration support"
22
23config OPENSSL_HARDWARE_SUPPORT
24	bool
25	default n
26	prompt "Enable hardware support"
27
28endif
29
30config OPENSSL_ENGINE_CRYPTO
31	bool
32	prompt "Crypto acceleration support" if PACKAGE_libopenssl
33