scripts to sign SubCA, client and server certs

- signsub.sh to sign a sub CA with the root CA

- signclient.sh to sign client certificates with the Sub CA

- signserver.sh to sign server certificates with the Sub CA
This commit is contained in:
Jan Dittberner 2011-05-04 22:23:49 +02:00
rodič beda864dbd
revize 3d450f9e30
3 změnil soubory, kde provedl 24 přidání a 0 odebrání

8
signclient.sh Normal file
Zobrazit soubor

@ -0,0 +1,8 @@
#!/bin/bash
if [ $# -lt 1 ]; then
echo "Usage: $0 <client-csr.csr.pem>"
exit 1
fi
openssl ca -config subca.conf -in "$1" -out "${1%%.csr.pem}.crt.pem" -extensions client_cert

8
signserver.sh Normal file
Zobrazit soubor

@ -0,0 +1,8 @@
#!/bin/bash
if [ $# -lt 1 ]; then
echo "Usage: $0 <server-csr.csr.pem>"
exit 1
fi
openssl ca -config subca.conf -in "$1" -out "${1%%.csr.pem}.crt.pem" -extensions server_cert

8
signsub.sh Normal file
Zobrazit soubor

@ -0,0 +1,8 @@
#!/bin/bash
if [ $# -lt 1 ]; then
echo "Usage: $0 <subca-request.csr.pem>"
exit 1
fi
openssl ca -config rootca.conf -in "$1" -out "${1%%.csr.pem}.crt.pem"