OpenWrt – Blame information for rev 4
?pathlinks?
Rev | Author | Line No. | Line |
---|---|---|---|
4 | office | 1 | if PACKAGE_libopenssl |
2 | |||
3 | config OPENSSL_WITH_EC |
||
4 | bool |
||
5 | default y |
||
6 | prompt "Enable elliptic curve support" |
||
7 | |||
8 | config OPENSSL_WITH_EC2M |
||
9 | bool |
||
10 | depends on OPENSSL_WITH_EC |
||
11 | prompt "Enable ec2m support" |
||
12 | |||
13 | config OPENSSL_WITH_SSL3 |
||
14 | bool |
||
15 | default n |
||
16 | prompt "Enable sslv3 support" |
||
17 | |||
18 | config OPENSSL_WITH_DEPRECATED |
||
19 | bool |
||
20 | default y |
||
21 | prompt "Include deprecated APIs" |
||
22 | |||
23 | config OPENSSL_WITH_DTLS |
||
24 | bool |
||
25 | default n |
||
26 | prompt "Enable DTLS support" |
||
27 | |||
28 | config OPENSSL_WITH_COMPRESSION |
||
29 | bool |
||
30 | default n |
||
31 | prompt "Enable compression support" |
||
32 | |||
33 | config OPENSSL_WITH_NPN |
||
34 | bool |
||
35 | default y |
||
36 | prompt "Enable NPN support" |
||
37 | |||
38 | config OPENSSL_WITH_PSK |
||
39 | bool |
||
40 | default y |
||
41 | prompt "Enable PSK support" |
||
42 | |||
43 | config OPENSSL_WITH_SRP |
||
44 | bool |
||
45 | default y |
||
46 | prompt "Enable SRP support" |
||
47 | |||
48 | config OPENSSL_ENGINE_DIGEST |
||
49 | bool |
||
50 | depends on OPENSSL_ENGINE_CRYPTO |
||
51 | prompt "Digests acceleration support" |
||
52 | |||
53 | config OPENSSL_HARDWARE_SUPPORT |
||
54 | bool |
||
55 | default n |
||
56 | prompt "Enable hardware support" |
||
57 | |||
58 | config OPENSSL_OPTIMIZE_SPEED |
||
59 | bool |
||
60 | default n |
||
61 | prompt "Enable optimization for speed instead of size" |
||
62 | |||
63 | endif |
||
64 | |||
65 | config OPENSSL_ENGINE_CRYPTO |
||
66 | bool |
||
67 | select OPENSSL_HARDWARE_SUPPORT |
||
68 | prompt "Crypto acceleration support" if PACKAGE_libopenssl |