-
Notifications
You must be signed in to change notification settings - Fork 0
/
BASH-openssl create CSR
74 lines (52 loc) · 1.23 KB
/
BASH-openssl create CSR
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
openssl req -new -sha256 -nodes -out \wildcard.domain.az.csr -newkey rsa:2048 -keyout \wildcard.domain.az.key -config <(
cat <<-EOF
[req]
default_bits = 2048
prompt = no
default_md = sha256
req_extensions = req_ext
distinguished_name = dn
\
[ dn ]
C=AZ
ST=Baku
L=Baku
O=Pasha Technology LLC
OU=IT
emailAddress=admin@domain.az
CN = *.pmdgroup.az
[ req_ext ]
subjectAltName = @alt_names
[ alt_names ]
DNS.1 = *.domain.az
EOF
)
Second Step: to generate decrypted key file.
openssl rsa -in wildcard.somain.key -out wildcard.domain.az.key
openssl pkcs12 -export -out domain.name.pfx -inkey domain.name.key -in domain.name.crt
openssl req -new -sha256 -nodes -out \wildcard.domain.az.csr -newkey rsa:2048 -keyout \wildcard.domain.az.key -config <(
cat <<-EOF
[req]
default_bits = 2048
prompt = no
default_md = sha256
req_extensions = req_ext
distinguished_name = dn
\
[ dn ]
C=AZ
ST=Baku
L=Baku
O=Pasha Technology LLC
OU=IT
emailAddress=admin@domain.az
CN = *.pmdgroup.az
[ req_ext ]
subjectAltName = @alt_names
[ alt_names ]
DNS.1 = *.domain.az
EOF
)
Second Step: to generate decrypted key file.
openssl rsa -in wildcard.somain.key -out wildcard.domain.az.key
openssl pkcs12 -export -out domain.name.pfx -inkey domain.name.key -in domain.name.crt