X-Git-Url: https://gerrit.onap.org/r/gitweb?p=aaf%2Fauthz.git;a=blobdiff_plain;f=conf%2FCA%2Fp12.sh;h=05bd1f459310a761e180a6d0f6d40c1f66f05768;hp=53184e2fb79672e0e542247b2c67f98157e1fbe1;hb=HEAD;hpb=ceda6e8bc270202bcb24340b86617110289c902e diff --git a/conf/CA/p12.sh b/conf/CA/p12.sh index 53184e2f..05bd1f45 100644 --- a/conf/CA/p12.sh +++ b/conf/CA/p12.sh @@ -1,22 +1,40 @@ +#!/bin/bash +######### +# ============LICENSE_START==================================================== +# org.onap.aaf +# =========================================================================== +# Copyright (c) 2017 AT&T Intellectual Property. All rights reserved. +# =========================================================================== +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# ============LICENSE_END==================================================== +# # # 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