forked from pool/openssl-3
Pedro Monreal Gonzalez
c3d5c867a1
OBS-URL: https://build.opensuse.org/request/show/949760 OBS-URL: https://build.opensuse.org/package/show/security:tls/openssl-3?expand=0&rev=33
61 lines
1.9 KiB
Diff
61 lines
1.9 KiB
Diff
From 6790960076742a9053c624e26fbb87fcd5789e27 Mon Sep 17 00:00:00 2001
|
|
From: Tomas Mraz <tmraz@fedoraproject.org>
|
|
Date: Thu, 24 Sep 2020 09:17:26 +0200
|
|
Subject: Override default paths for the CA directory tree
|
|
|
|
Also add default section to load crypto-policies configuration
|
|
for TLS.
|
|
|
|
It needs to be reverted before running tests.
|
|
|
|
(was openssl-1.1.1-conf-paths.patch)
|
|
---
|
|
apps/openssl.cnf | 20 ++++++++++++++++++--
|
|
2 files changed, 19 insertions(+), 3 deletions(-)
|
|
|
|
Index: openssl-3.0.1/apps/openssl.cnf
|
|
===================================================================
|
|
--- openssl-3.0.1.orig/apps/openssl.cnf
|
|
+++ openssl-3.0.1/apps/openssl.cnf
|
|
@@ -52,6 +52,8 @@ tsa_policy3 = 1.2.3.4.5.7
|
|
|
|
[openssl_init]
|
|
providers = provider_sect
|
|
+# Load default TLS policy configuration
|
|
+ssl_conf = ssl_module
|
|
|
|
# List of providers to load
|
|
[provider_sect]
|
|
@@ -71,6 +73,13 @@ default = default_sect
|
|
[default_sect]
|
|
# activate = 1
|
|
|
|
+[ ssl_module ]
|
|
+
|
|
+system_default = crypto_policy
|
|
+
|
|
+[ crypto_policy ]
|
|
+
|
|
+.include = /etc/crypto-policies/back-ends/opensslcnf.config
|
|
|
|
####################################################################
|
|
[ ca ]
|
|
@@ -79,7 +88,7 @@ default_ca = CA_default # The default c
|
|
####################################################################
|
|
[ CA_default ]
|
|
|
|
-dir = ./demoCA # Where everything is kept
|
|
+dir = /etc/pki/CA # Where everything is kept
|
|
certs = $dir/certs # Where the issued certs are kept
|
|
crl_dir = $dir/crl # Where the issued crl are kept
|
|
database = $dir/index.txt # database index file.
|
|
@@ -309,7 +318,7 @@ default_tsa = tsa_config1 # the default
|
|
[ tsa_config1 ]
|
|
|
|
# These are used by the TSA reply generation only.
|
|
-dir = ./demoCA # TSA root directory
|
|
+dir = /etc/pki/CA # TSA root directory
|
|
serial = $dir/tsaserial # The current serial number (mandatory)
|
|
crypto_device = builtin # OpenSSL engine to use for signing
|
|
signer_cert = $dir/tsacert.pem # The TSA signing certificate
|