| 1234567891011121314151617181920212223242526272829 |
- From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
- From: Eneas U de Queiroz <[email protected]>
- Date: Sat, 27 Mar 2021 17:43:25 -0300
- Subject: openssl.cnf: add engine configuration
- This adds configuration options for engines, loading all cnf files under
- /etc/ssl/engines.cnf.d/.
- Signed-off-by: Eneas U de Queiroz <[email protected]>
- --- a/apps/openssl.cnf
- +++ b/apps/openssl.cnf
- @@ -22,6 +22,16 @@ oid_section = new_oids
- # (Alternatively, use a configuration file that has only
- # X.509v3 extensions in its main [= default] section.)
-
- +openssl_conf=openssl_conf
- +
- +[openssl_conf]
- +engines=engines
- +
- +[engines]
- +.include /var/etc/ssl/engines.cnf
- +
- +.include /etc/ssl/engines.cnf.d
- +
- [ new_oids ]
-
- # We can add new OIDs in here for use by 'ca', 'req' and 'ts'.
|