forked from eclipse/kuksa.val
-
Notifications
You must be signed in to change notification settings - Fork 0
/
genCerts.sh
executable file
·67 lines (57 loc) · 2.03 KB
/
genCerts.sh
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
#!/bin/sh
genCAKey() {
openssl genrsa -out CA.key 2048
}
genCACert() {
openssl req -key CA.key -new -out CA.csr -subj "/C=CA/ST=Ontario/L=Ottawa/O=Eclipse.org Foundation, Inc./CN=localhost-ca/[email protected]"
openssl x509 -signkey CA.key -in CA.csr -req -days 3650 -out CA.pem
}
genKey() {
openssl genrsa -out $1.key 2048
}
# This method (and how it is called) contains some hacks to pass name verification
# CN is called as per argument
# We also include that as subjectAltName
# We add localhost and 127.0.0.1 as subjectAltName as they are common host names used in test
# Also Server/Client as that can be a work-around (by setting tls-server-name in e.g. kuksa-client)
# as some TLS client integrations cannot handle name verification towards IP-addresses
# (Only client for now in KUKSA.val that has problem with IP host validation is the kuksa-client gRPC integration)
genCert() {
tmp="$(mktemp)"
printf "subjectAltName=DNS:%s, DNS:localhost, IP:127.0.0.1" "$1" > "$tmp"
openssl req -new -key $1.key -out $1.csr -passin pass:"temp" -subj "/C=CA/ST=Ontario/L=Ottawa/O=Eclipse.org Foundation, Inc./CN=$1/[email protected]"
openssl x509 -req -in $1.csr -extfile "$tmp" -CA CA.pem -CAkey CA.key -CAcreateserial -days 365 -out $1.pem
openssl verify -CAfile CA.pem $1.pem
rm "$tmp"
}
set -e
# Check if the CA is available, else make CA certificates
if [ -f "CA.key" ]; then
echo "Existing CA.key will be used"
else
echo "No CA.key found, will generate new key"
genCAKey
rm -f CA.pem
echo ""
fi
# Check if the CA.pem is available, else generate a new CA.pem
if [ -f "CA.pem" ]; then
echo "CA.pem will not be regenerated"
else
echo "No CA.pem found, will generate new CA.pem"
genCACert
echo ""
fi
for i in Server Client;
do
if [ -f $i.key ]; then
echo "Existing $i.key will be used"
else
echo "No $i.key found, will generate new key"
genKey $i
fi
echo ""
echo "Generating $i.pem"
genCert $i
echo ""
done