-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathopenssl.cnf
More file actions
256 lines (209 loc) · 8.46 KB
/
Copy pathopenssl.cnf
File metadata and controls
256 lines (209 loc) · 8.46 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
# Commands to create a surrogate TLS server certificate chain of trust
##################
# CA
##################
# CA encrypted key
# EC
# openssl genpkey -out private/ca.key.pem \
# -algorithm EC -pkeyopt ec_paramgen_curve:${EC_PARAMGEN_CURVE} -aes256 \
# -pass file:private/passphrase.txt
# RSA
# # openssl genpkey -out private/ca.key.pem \
# # -algorithm RSA -pkeyopt rsa_keygen_bits:${RSA_KEYGEN_BITS} -aes256 \
# # -pass file:private/passphrase.txt
# CA certificate
# openssl req -config openssl.cnf \
# -new -x509 -days 1460 -${HASH_DIGEST} -extensions v3_ca -out ca.cert.pem \
# -key private/ca.key.pem -passin file:private/passphrase.txt -batch
# CA certificate text verification
# openssl x509 -text -noout -in ca.cert.pem
# CA certificate openssl self-verification
# openssl verify -CAfile ca.cert.pem ca.cert.pem
##################
# Intermediate CA
##################
# Intermediate CA encrypted key
# EC
# openssl genpkey -out intermediate/private/intermediate.key.pem \
# -algorithm EC -pkeyopt ec_paramgen_curve:${EC_PARAMGEN_CURVE} -aes256 \
# -passout file:intermediate/private/passphrase_intermediate.txt
# RSA
# openssl genpkey -out intermediate/private/intermediate.key.pem \
# -algorithm RSA -pkeyopt rsa_keygen_bits:${RSA_KEYGEN_BITS} -aes256 \
# -pass file:intermediate/private/passphrase_intermediate.txt
# Intermediate CA CSR
# openssl req -config intermediate/openssl_intermediate.cnf -new -${HASH_DIGEST} \
# -key intermediate/private/intermediate.key.pem \
# -passin file:intermediate/private/passphrase_intermediate.txt -batch \
# -out intermediate/intermediate.csr.pem
# CA initialize database
# sh -c 'echo 01 > serial'
# touch index.txt
# Intermediate CA certificate
# openssl ca -config openssl.cnf \
# -days 730 -notext -md ${HASH_DIGEST} -extensions v3_intermediate_ca \
# -in intermediate/intermediate.csr.pem \
# -out intermediate/intermediate.cert.pem
# -passin file:private/passphrase.txt -batch
# Intermediate CA chain
# sh -c 'cat intermediate/intermediate.cert.pem ca.cert.pem \
# > intermediate/ca-chain.cert.pem'
# Intermediate CA certificate text verification
# openssl x509 -text -noout -in intermediate/intermediate.cert.pem
# Intermediate CA chain openssl self-verification
# openssl verify -CAfile ca.cert.pem intermediate/ca-chain.cert.pem
##################
# Client Certs
##################
# Client certificate encrypted key
# openssl genrsa -aes256 -out intermediate/private/www.example.com.key.pem \
# -passout file:intermediate/private/passphrase_client.txt 4096
# Client certificate decrypted key
# openssl rsa -in intermediate/private/www.example.com.key.pem \
# -passin file:intermediate/private/passphrase_client.txt \
# -out intermediate/private/www.example.com.key.pem.decrypted
# Client certificate CSR
# openssl req -config intermediate/openssl_intermediate.cnf -new -${HASH_DIGEST} \
# -key intermediate/private/www.example.com.key.pem \
# -passin file:intermediate/private/passphrase_client.txt -batch \
# -out intermediate/www.example.com.csr.pem
# Intermediate CA initialize database
# sh -c 'echo 01 > intermediate/serial'
# touch intermediate/index.txt
# Client certificate
# openssl ca -config intermediate/openssl_intermediate.cnf \
# -days 375 -notext -md ${HASH_DIGEST} \
# -in intermediate/www.example.com.csr.pem \
# -out intermediate/www.example.com.cert.pem
# -passin file:intermediate/private/passphrase_intermediate.txt -batch \
# -subj '/CN=www.example.com'
# Client certificate text verification
# openssl x509 -text -noout -in intermediate/www.example.com.cert.pem
# Client chain openssl self-verification
# openssl verify -CAfile intermediate/ca-chain.cert.pem \
# intermediate/www.example.com.cert.pem
# Client chain of trust
# sh -c 'cat intermediate/www.example.com.cert.pem \
# intermediate/intermediate.cert.pem ca.cert.pem \
# > intermediate/www.example.com.chain.pem'
# Client certificate SHA1 hash
# openssl x509 -noout -fingerprint -sha1 -inform pem \
# -in intermediate/www.example.com.cert.pem \
# | tr -d ':' | sed -e 's|^SHA1 Fingerprint=||'
# Client certificate of the forms
# @host@.@domain@.@tld@.@CERTIFICATE_SHA1@.{cert,key,chain}.pem
[ca]
default_ca = CA_default
[ CA_default ]
# Directory and file locations.
dir = ca
certs = $dir/certs
crl_dir = $dir/crl
new_certs_dir = $dir/newcerts
database = $dir/index.txt
serial = $dir/serial
RANDFILE = $dir/private/.rand
# The root key and root certificate.
private_key = $dir/private/ca.key.pem
certificate = $dir/certs/ca.cert.pem
# For certificate revocation lists.
crlnumber = $dir/crlnumber
crl = $dir/crl/ca.crl.pem
crl_extensions = crl_ext
default_crl_days = 30
# SHA-1 is deprecated, so use SHA-2 instead.
default_md = sha256
name_opt = ca_default
cert_opt = ca_default
# 12 years (plus leap days)
default_days = 4383
preserve = no
policy = policy_strict
# allow issuing multiple certificates with the same CN
unique_subject = no
[ policy_strict ]
# The root CA should only sign intermediate certificates that match.
# See the POLICY FORMAT section of `man ca`.
countryName = match
stateOrProvinceName = match
localityName = match
organizationName = match
organizationalUnitName = optional
commonName = supplied
emailAddress = optional
[ 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 = optional
emailAddress = optional
[ req ]
# Options for the `req` tool (`man req`).
default_bits = 4096
distinguished_name = req_distinguished_name
string_mask = utf8only
# SHA-1 is deprecated, so use SHA-2 instead.
default_md = sha256
# Extension to add when the -x509 option is used.
x509_extensions = v3_ca
[ req_distinguished_name ]
# See <https://en.wikipedia.org/wiki/Certificate_signing_request>.
countryName = US
stateOrProvinceName = Massachusetts
localityName = Boston
organizationName = MyOrganization
organizationalUnitName = MyOrganization Certification Authority
commonName = MyOrganization Root CA
emailAddress = admin@myorganization.org
# Optionally, specify some defaults.
countryName_default = US
stateOrProvinceName_default = Massachusetts
localityName_default = Boston
organizationName_default = MyOrganization
organizationalUnitName_default = MyOrganization Certification Authority
commonName_default = MyOrganization Root CA
emailAddress_default = admin@myorganization.org
[ v3_ca ]
# Extensions for a typical CA (`man x509v3_config`).
subjectKeyIdentifier = hash
authorityKeyIdentifier = keyid:always
basicConstraints = critical, CA:true
keyUsage = critical, digitalSignature, cRLSign, keyCertSign
[ v3_intermediate_ca ]
# Extensions for a typical intermediate CA (`man x509v3_config`).
subjectKeyIdentifier = hash
authorityKeyIdentifier = keyid:always
basicConstraints = critical, CA:true, pathlen:1
keyUsage = critical, digitalSignature, cRLSign, keyCertSign
[ usr_cert ]
# Extensions for client certificates (`man x509v3_config`).
basicConstraints = CA:FALSE
nsCertType = client, email
nsComment = "OpenSSL Generated Client Certificate"
subjectKeyIdentifier = hash
authorityKeyIdentifier = keyid
keyUsage = critical, nonRepudiation, digitalSignature, keyEncipherment
extendedKeyUsage = clientAuth, emailProtection
[ server_cert ]
# Extensions for server certificates (`man x509v3_config`).
basicConstraints = CA:FALSE
nsCertType = server
nsComment = "OpenSSL Generated Server Certificate"
subjectKeyIdentifier = hash
authorityKeyIdentifier = keyid
keyUsage = critical, digitalSignature, keyEncipherment, dataEncipherment, keyCertSign
extendedKeyUsage = serverAuth
[ crl_ext ]
# Extension for CRLs (`man x509v3_config`).
authorityKeyIdentifier=keyid:always
[ ocsp ]
# Extension for OCSP signing certificates (`man ocsp`).
basicConstraints = CA:FALSE
subjectKeyIdentifier = hash
authorityKeyIdentifier = keyid
keyUsage = critical, digitalSignature
extendedKeyUsage = critical, OCSPSigning