diff options
author | Theo Buehler <tb@cvs.openbsd.org> | 2023-09-26 21:18:02 +0000 |
---|---|---|
committer | Theo Buehler <tb@cvs.openbsd.org> | 2023-09-26 21:18:02 +0000 |
commit | 7a813900350e960435b8e2fbff261c18f3d7b40e (patch) | |
tree | 8d64fc382c3781c737c3ebcb6736f15d22d69607 /regress/lib | |
parent | 09bffed9085204cb536b2450df4813a43d5b9b32 (diff) |
Fix reference to x509v3.cnf(5) bis
Diffstat (limited to 'regress/lib')
-rw-r--r-- | regress/lib/libcrypto/CA/root.cnf | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/regress/lib/libcrypto/CA/root.cnf b/regress/lib/libcrypto/CA/root.cnf index 30a442f1361..02399a0a3f5 100644 --- a/regress/lib/libcrypto/CA/root.cnf +++ b/regress/lib/libcrypto/CA/root.cnf @@ -1,4 +1,4 @@ -# $OpenBSD: root.cnf,v 1.4 2022/03/14 21:30:48 tb Exp $ +# $OpenBSD: root.cnf,v 1.5 2023/09/26 21:18:01 tb Exp $ # For regression tests default_ca = CA_regress @@ -83,14 +83,14 @@ emailAddress_default = evilsoandsos@openbsd.org commonName_default = Regress Root CA [ v3_ca ] -# Extensions for a typical CA (`man x509v3_config`). +# Extensions for a typical CA (`man x509v3.cnf`). subjectKeyIdentifier = hash authorityKeyIdentifier = keyid:always,issuer basicConstraints = critical, CA:true keyUsage = critical, digitalSignature, cRLSign, keyCertSign [ v3_intermediate_ca ] -# Extensions for a typical intermediate CA (`man x509v3_config`). +# Extensions for a typical intermediate CA (`man x509v3.cnf`). subjectKeyIdentifier = hash authorityKeyIdentifier = keyid:always,issuer basicConstraints = critical, CA:true, pathlen:0 @@ -113,7 +113,7 @@ C = CA O = OpenBSD [ usr_cert ] -# Extensions for client certificates (`man x509v3_config`). +# Extensions for client certificates (`man x509v3.cnf`). basicConstraints = CA:FALSE nsCertType = client, email nsComment = "OpenSSL Generated Client Certificate" @@ -123,7 +123,7 @@ keyUsage = critical, nonRepudiation, digitalSignature, keyEncipherment extendedKeyUsage = clientAuth, emailProtection [ server_cert ] -# Extensions for server certificates (`man x509v3_config`). +# Extensions for server certificates (`man x509v3.cnf`). basicConstraints = CA:FALSE nsCertType = server nsComment = "OpenSSL Generated Server Certificate" @@ -133,7 +133,7 @@ keyUsage = critical, digitalSignature, keyEncipherment extendedKeyUsage = serverAuth [ crl_ext ] -# Extension for CRLs (`man x509v3_config`). +# Extension for CRLs (`man x509v3.cnf`). authorityKeyIdentifier=keyid:always [ ocsp ] |