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
这个提交包含在:
Jan Dittberner 2011-05-04 22:23:49 +02:00
父节点 beda864dbd
当前提交 3d450f9e30
共有 3 个文件被更改,包括 24 次插入0 次删除

8
signclient.sh 普通文件
查看文件

@ -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 普通文件
查看文件

@ -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 普通文件
查看文件

@ -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"