123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- HOME = .
- RANDFILE = $ENV::HOME/.rnd
- CN = "Not Defined"
- default_ca = ca
- [ req ]
- default_bits = 2048
- default_keyfile = privkey.pem
- prompt = no
- distinguished_name = req_distinguished_name
- x509_extensions = v3_ca
- string_mask = utf8only
- [ req_distinguished_name ]
- countryName = UK
- organizationName = OpenSSL Group
- commonName = $ENV::CN
- [ usr_cert ]
- basicConstraints=critical, CA:FALSE
- keyUsage=critical, nonRepudiation, digitalSignature, keyEncipherment
- subjectKeyIdentifier=hash
- authorityKeyIdentifier=keyid
- [ dh_cert ]
- basicConstraints=critical, CA:FALSE
- keyUsage=critical, keyAgreement
- subjectKeyIdentifier=hash
- authorityKeyIdentifier=keyid
- [ v3_ca ]
- subjectKeyIdentifier=hash
- authorityKeyIdentifier=keyid:always
- basicConstraints = critical,CA:true
- keyUsage = critical, cRLSign, keyCertSign
|