mirror of
https://github.com/openssl/openssl.git
synced 2024-11-21 01:15:20 +08:00
d462b5ff21
This removes "req" as the hardwired section for the req command. Doing this will let us merge some test configs. Reviewed-by: Tomas Mraz <tmraz@fedoraproject.org> Reviewed-by: Dmitry Belyavskiy <beldmit@gmail.com> (Merged from https://github.com/openssl/openssl/pull/11249)
79 lines
2.3 KiB
INI
79 lines
2.3 KiB
INI
|
|
####################################################################
|
|
[ ca ]
|
|
default_ca = CA_default # The default ca section
|
|
|
|
####################################################################
|
|
[ CA_default ]
|
|
|
|
dir = ./demoCA # 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.
|
|
new_certs_dir = $dir/new_certs # default place for new certs.
|
|
|
|
certificate = $dir/CAcert.pem # The CA certificate
|
|
serial = $dir/serial # The current serial number
|
|
crl = $dir/crl.pem # The current CRL
|
|
private_key = $dir/private/CAkey.pem# The private key
|
|
|
|
default_days = 365 # how long to certify for
|
|
default_crl_days= 30 # how long before next CRL
|
|
default_md = md5 # which md to use.
|
|
|
|
# A few difference way of specifying how similar the request should look
|
|
# For type CA, the listed attributes must be the same, and the optional
|
|
# and supplied fields are just that :-)
|
|
policy = policy_match
|
|
|
|
# For the CA policy
|
|
[ policy_match ]
|
|
countryName = match
|
|
stateOrProvinceName = match
|
|
organizationName = match
|
|
organizationalUnitName = optional
|
|
commonName = supplied
|
|
emailAddress = optional
|
|
|
|
# For the 'anything' policy
|
|
# At this point in time, you must list all acceptable 'object'
|
|
# types.
|
|
[ policy_anything ]
|
|
countryName = optional
|
|
stateOrProvinceName = optional
|
|
localityName = optional
|
|
organizationName = optional
|
|
organizationalUnitName = optional
|
|
commonName = supplied
|
|
emailAddress = optional
|
|
|
|
####################################################################
|
|
[ req ]
|
|
default_bits = 2048
|
|
default_keyfile = testkey.pem
|
|
distinguished_name = req_distinguished_name
|
|
encrypt_rsa_key = no
|
|
|
|
# Make altreq be identical to req
|
|
[ altreq ]
|
|
default_bits = 2048
|
|
default_keyfile = testkey.pem
|
|
distinguished_name = req_distinguished_name
|
|
encrypt_rsa_key = no
|
|
|
|
[ req_distinguished_name ]
|
|
countryName = C field
|
|
countryName_value = AU
|
|
stateOrProvinceName = SP field
|
|
stateOrProvinceName_value =
|
|
localityName = L field
|
|
localityName_value = Brisbane
|
|
organizationName = O field
|
|
organizationName_value = CryptSoft Pty Ltd
|
|
organizationalUnitName = OU field
|
|
organizationalUnitName_value = .
|
|
commonName = CN field
|
|
commonName_value = Eric Young
|
|
emailAddress = email field
|
|
emailAddress_value = eay@mincom.oz.au
|