Files
samba-pki-tools/templates/openssl_user_cert.tmpl
T
2024-05-07 14:56:21 +02:00

125 lines
3.6 KiB
Cheetah

set_crp_default = {{ crl_uri }}
CRLDISTPT = $set_crp_default
[ ca ]
# `man ca`
default_ca = CA_default
[ CA_default ]
# Directory and file locations.
dir = {{ pki_dir }}
certs = $dir/certs
crl_dir = $dir/crl
new_certs_dir = $dir/newcerts
database = $dir/index.txt
serial = $dir/serial
private = $dir/private
# The root key and root certificate.
private_key = {{ dc_ca_keyfile }}
certificate = {{ dc_ca_certfile }}
# SHA-1 is deprecated, so use SHA-2 instead.
default_md = sha512
name_opt = ca_default
cert_opt = ca_default
default_days = {{ default_crl_duration }}
preserve = no
policy = policy_loose
default_crl_days = {{ default_crl_duration }}
[ req ]
default_bits = {{ default_bits_user }}
distinguished_name = req_distinguished_name
[ policy_loose ]
# Allow the intermediate CA to sign a more diverse range of certificates.
# See the POLICY FORMAT section of the `ca` man page.
countryName = optional
stateOrProvinceName = optional
localityName = optional
organizationName = optional
organizationalUnitName = optional
commonName = supplied
emailAddress = optional
[ server_cert ]
# Extensions for server certificates (`man x509v3_config`).
basicConstraints = CA:FALSE
nsCertType = server
nsComment = "OpenSSL Generated Server Certificate"
subjectKeyIdentifier = hash
authorityKeyIdentifier = keyid,issuer:always
keyUsage = critical, digitalSignature, keyEncipherment
extendedKeyUsage = serverAuth
[ req_distinguished_name ]
countryName = Country Name (2 letter code)
countryName_default = {{ country }}
stateOrProvinceName = State or Province Name (full name)
stateOrProvinceName_default = {{ state }}
localityName = Locality Name (eg, city)
localityName_default = {{ city }}
organizationName = Organization Name
organizationName_default = {{ organization_name }}
organizationalUnitName = Organizational Unit Name
organizationalUnitName_default = {{ organization_unit }}
commonName = Common Name (eg, Your Name or server name)
commonName_max = 64
commonName_default = {{ commonName }}
emailAddress = Email Address
emailAddress_max = 64
emailAddress_default = {{ emailAddress }}
########################################### User Certificates ################################################
[ usr_cert_scarduser ]
# These extensions are added when 'ca' signs a request for a certificate that will be used to login from a smart card
# This goes against PKIX guidelines but some CAs do it and some software
# requires this to avoid interpreting an end user certificate as a CA.
basicConstraints=CA:FALSE
crlDistributionPoints=URI:$CRLDISTPT
# For normal client use this is typical
nsCertType = client, email
# This is typical in keyUsage for a client certificate.
keyUsage = nonRepudiation, digitalSignature, keyEncipherment
# This will be displayed in Netscape's comment listbox.
nsComment = "Smart Card Login Certificate"
# PKIX recommendations harmless if included in all certificates.
subjectKeyIdentifier=hash
authorityKeyIdentifier=keyid,issuer
# This stuff is for subjectAltName and issuerAltname.
#subjectAltName=email:copy,otherName:msUPN;UTF8:kguerineau@ad.tranqui.it
subjectAltName = @sanuser
# Copy subject details
issuerAltName=issuer:copy
nsCaRevocationUrl = $CRLDISTPT
#nsBaseUrl
#nsRevocationUrl
#nsRenewalUrl
#nsCaPolicyUrl
#nsSslServerName
#Extended Key requirements for client certs
extendedKeyUsage = clientAuth,msSmartcardLogin