Skip to content

Commit

Permalink
Another one?
Browse files Browse the repository at this point in the history
  • Loading branch information
JanHoefelmeyer committed Aug 8, 2024
1 parent 55ca4c7 commit 77caa4d
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions docs/scripts/createCCForITest.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ echo "CC #######################################################################
sudo mkdir -p ~/${FOLDERNAME}
cd ~/${FOLDERNAME}

certtool --generate-privkey --outfile testclient1-key.pem
sudo certtool --generate-privkey --outfile testclient1-key.pem

echo '
organization = "'${ORGANAME}'"
Expand All @@ -29,13 +29,13 @@ encryption_key
serial = 020
expiration_days = 50
' > gnutls-certtool.testclient1.template
' | sudo tee -a gnutls-certtool.testclient1.template

certtool --generate-certificate --load-privkey testclient1-key.pem --outfile testclient1.crt --load-ca-certificate rootca-cert.pem --load-ca-privkey rootca-key.pem --template gnutls-certtool.testclient1.template --stdout | head -1
sudo certtool --generate-certificate --load-privkey testclient1-key.pem --outfile testclient1.crt --load-ca-certificate rootca-cert.pem --load-ca-privkey rootca-key.pem --template gnutls-certtool.testclient1.template --stdout | head -1

certtool --load-ca-certificate rootca-cert.pem --load-certificate testclient1.crt --load-privkey testclient1-key.pem --to-p12 --p12-name "Test Client 1" --null-password --outder --outfile testclient1.p12
sudo certtool --load-ca-certificate rootca-cert.pem --load-certificate testclient1.crt --load-privkey testclient1-key.pem --to-p12 --p12-name "Test Client 1" --null-password --outder --outfile testclient1.p12

certtool --generate-privkey --outfile testclient2-key.pem
sudo certtool --generate-privkey --outfile testclient2-key.pem

echo '
organization = "'${ORGANAME}'"
Expand All @@ -48,11 +48,11 @@ encryption_key
serial = 021
expiration_days = 1
' > gnutls-certtool.testclient2.template
' | sudo tee -a gnutls-certtool.testclient2.template

certtool --generate-certificate --load-privkey testclient2-key.pem --outfile testclient2.crt --load-ca-certificate rootca-cert.pem --load-ca-privkey rootca-key.pem --template gnutls-certtool.testclient2.template --stdout | head -1
sudo certtool --generate-certificate --load-privkey testclient2-key.pem --outfile testclient2.crt --load-ca-certificate rootca-cert.pem --load-ca-privkey rootca-key.pem --template gnutls-certtool.testclient2.template --stdout | head -1

certtool --load-ca-certificate rootca-cert.pem --load-certificate testclient2.crt --load-privkey testclient2-key.pem --to-p12 --p12-name "Test Client 2" --null-password --outder --outfile testclient2.p12
sudo certtool --load-ca-certificate rootca-cert.pem --load-certificate testclient2.crt --load-privkey testclient2-key.pem --to-p12 --p12-name "Test Client 2" --null-password --outder --outfile testclient2.p12

SSL_CLIENT_CERTIFICATE=$(
echo "$PWD/rootca-cert.pem"
Expand Down

0 comments on commit 77caa4d

Please sign in to comment.