openssl: config engines in /etc/ssl/engines.cnf.d
[openwrt/openwrt.git] / package / libs / openssl / files / devcrypto.cnf
1 [devcrypto]
2 # Leave this alone and configure algorithms with CIPERS/DIGESTS below
3 default_algorithms = ALL
4
5 # Configuration commands:
6 # Run 'openssl engine -t -c -vv -pre DUMP_INFO devcrypto' to see a
7 # list of supported algorithms, along with their driver, whether they
8 # are hw accelerated or not, and the engine's configuration commands.
9
10 # USE_SOFTDRIVERS: specifies whether to use software (not accelerated)
11 # drivers (0=use only accelerated drivers, 1=allow all drivers, 2=use
12 # if acceleration can't be determined) [default=2]
13 #USE_SOFTDRIVERS = 2
14
15 # CIPHERS: either ALL, NONE, or a comma-separated list of ciphers to
16 # enable [default=ALL]
17 # It is recommended to disable the ECB ciphers; in most cases, it will
18 # only be used for PRNG, in small blocks, where performance is poor,
19 # and there may be problems with apps forking with open crypto
20 # contexts, leading to failures. The CBC ciphers work well:
21 #CIPHERS=DES-CBC, DES-EDE3-CBC, AES-128-CBC, AES-192-CBC, AES-256-CBC
22
23 # DIGESTS: either ALL, NONE, or a comma-separated list of digests to
24 # enable [default=NONE]
25 # It is strongly recommended not to enable digests; their performance
26 # is poor, and there are many cases in which they will not work,
27 # especially when calling fork with open crypto contexts. Openssh,
28 # for example, does this, and you may not be able to login.
29 #DIGESTS = NONE
30
31