summaryrefslogtreecommitdiff
path: root/src/lib/libssl/src/apps/CA.sh
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/libssl/src/apps/CA.sh')
-rw-r--r--src/lib/libssl/src/apps/CA.sh8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/lib/libssl/src/apps/CA.sh b/src/lib/libssl/src/apps/CA.sh
index 030a11fc25..84d7ec0b33 100644
--- a/src/lib/libssl/src/apps/CA.sh
+++ b/src/lib/libssl/src/apps/CA.sh
@@ -51,15 +51,15 @@ case $i in
51 ;; 51 ;;
52-newcert) 52-newcert)
53 # create a certificate 53 # create a certificate
54 $REQ -new -x509 -keyout newreq.pem -out newreq.pem $DAYS 54 $REQ -new -x509 -keyout newkey.pem -out newcert.pem $DAYS
55 RET=$? 55 RET=$?
56 echo "Certificate (and private key) is in newreq.pem" 56 echo "Certificate is in newcert.pem, private key is in newkey.pem"
57 ;; 57 ;;
58-newreq) 58-newreq)
59 # create a certificate request 59 # create a certificate request
60 $REQ -new -keyout newreq.pem -out newreq.pem $DAYS 60 $REQ -new -keyout newkey.pem -out newreq.pem $DAYS
61 RET=$? 61 RET=$?
62 echo "Request (and private key) is in newreq.pem" 62 echo "Request is in newreq.pem, private key is in newkey.pem"
63 ;; 63 ;;
64-newca) 64-newca)
65 # if explicitly asked for or it doesn't exist then setup the directory 65 # if explicitly asked for or it doesn't exist then setup the directory