summaryrefslogtreecommitdiffstats
path: root/conf/CA/p12.sh
diff options
context:
space:
mode:
authorMaciej Wejs <maciej.wejs@nokia.com>2018-08-17 13:56:31 +0200
committerMaciej Wejs <maciej.wejs@nokia.com>2018-08-17 12:01:06 +0000
commit02c1970bc985e1263a141c5ac22dee33ebae2df6 (patch)
treecb71cd546bcf3a381f95a963cf4b5600f72c55a9 /conf/CA/p12.sh
parent7fa31dee0dcfc9ef37703feef1c3d573728be742 (diff)
Improvements of Certs creation scripts
Corrections and usability improvements of Certificates creation scripts located at: /aaf/authz/conf/CA Change-Id: I1b933f4eaf49e94805e5307563886049606d4103 Issue-ID: AAF-441 Signed-off-by: Maciej Wejs <maciej.wejs@nokia.com>
Diffstat (limited to 'conf/CA/p12.sh')
-rw-r--r--conf/CA/p12.sh16
1 files changed, 7 insertions, 9 deletions
diff --git a/conf/CA/p12.sh b/conf/CA/p12.sh
index 53184e2f..23e76247 100644
--- a/conf/CA/p12.sh
+++ b/conf/CA/p12.sh
@@ -1,22 +1,20 @@
#
# Create a p12 file from local certs
#
-echo "FQI (Fully Qualified Identity): "
-read FQI
if [ "$1" = "" ]; then
- MACH=$FQI
-else
+ echo "Enter Keystore Name: "
+ read MACH
+else
MACH=$1
fi
-# Add Cert AND Intermediate CAs (Clients will have Root CAs (or not))
- cat $MACH.crt > $MACH.chain
+ # Add Cert AND Intermediate CAs (Clients will have Root CAs (or not))
+ cat certs/$MACH.crt > $MACH.chain
# Add THIS Intermediate CA into chain
- cat "certs/ca.crt" >> $MACH.chain
+ cat certs/ca.crt >> $MACH.chain
# Make a pkcs12 keystore, a jks keystore and a pem keystore
rm -f $MACH.p12
# Note: Openssl will pickup and load all Certs in the Chain file
- openssl pkcs12 -name $FQI -export -in $MACH.chain -inkey private/$MACH.key -out $MACH.p12
-
+ openssl pkcs12 -name $MACH -export -in $MACH.chain -inkey private/$MACH.key -out $MACH.p12