blob: 1591a1d3916cdf3c1074c760117ff67f1a869ef0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
[ req ]
default_bits = @CERT_WIDTH@
default_keyfile = @CERT_PRIVKEY@
default_md = sha256
distinguished_name = req_distinguished_name
req_extensions = v3_req
prompt = no
[ req_distinguished_name ]
C = @CERT_COUNTRY@
ST = @CERT_STATE@
L = @CERT_LOCALITY@
O = @CERT_ORG@
OU = @CERT_UNIT@
CN= @CERT_COMMON@
emailAddress = @CERT_EMAIL@
[v3_ca]
subjectKeyIdentifier=hash
authorityKeyIdentifier=keyid:always,issuer:always
basicConstraints = CA:true
[v3_req]
# Extensions to add to a certificate request
basicConstraints = CA:FALSE
keyUsage = nonRepudiation, digitalSignature, keyEncipherment
|