OpenSSL configuration examples
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12345678 |
- #!/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"
|