-
Notifications
You must be signed in to change notification settings - Fork 0
/
gen_certificate.sh
executable file
·38 lines (31 loc) · 1.06 KB
/
gen_certificate.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
#!/bin/bash
helpFunction()
{
echo ""
echo "Usage: $0 -n <id> -c <certificate> -k <key> -d <domain>"
echo -e "\t-n Node ID"
echo -e "\t-c Root certificate"
echo -e "\t-k Root key"
echo -e "\t-d Domain name (Common Name)"
exit 1 # Exit script after printing help
}
while getopts "c:k:d:n:" opt
do
case "$opt" in
n ) id="$OPTARG" ;;
c ) cert="$OPTARG" ;;
k ) key="$OPTARG" ;;
d ) cn="$OPTARG" ;;
? ) helpFunction ;; # Print helpFunction in case parameter is non-existent
esac
done
# Print helpFunction in case parameters are empty
if [ -z "$id" ] || [ -z "$cert" ] || [ -z "$key" ] || [ -z "$cn" ]
then
echo "Some or all of the parameters are empty";
helpFunction
fi
openssl genrsa -out PlayerWeb$id.key 2048
openssl req -new -key PlayerWeb$id.key -out PlayerWeb$id.csr -subj "/C=GR/ST=Attica/L=Athens/O=ATHENA RIC/OU=IMSI/CN=$cn"
openssl x509 -req -days 1000 -in PlayerWeb$id.csr -CA $cert -CAkey $key -set_serial 0101 -out PlayerWeb$id.crt -sha256
openssl x509 -in PlayerWeb$id.crt -out PlayerWeb$id.pem -outform PEM