summaryrefslogtreecommitdiff
path: root/libressl/libressl/doit.sh
diff options
context:
space:
mode:
Diffstat (limited to 'libressl/libressl/doit.sh')
-rw-r--r--libressl/libressl/doit.sh22
1 files changed, 22 insertions, 0 deletions
diff --git a/libressl/libressl/doit.sh b/libressl/libressl/doit.sh
new file mode 100644
index 0000000..2a186a4
--- /dev/null
+++ b/libressl/libressl/doit.sh
@@ -0,0 +1,22 @@
+#!/bin/sh
+ME=`whoami`
+HERE=`pwd`
+LOF="$HERE/ListOfCerts.txt"
+rm -f $LOF
+if test ! -d certs ; then
+ mkdir certs
+fi
+
+SSLDIR=`openssl version -d | awk '{ printf $2 }' | sed 's/"//g'`
+CERTDIR="$SSLDIR/certs"
+cd $CERTDIR
+ls -1 *pem > $LOF
+
+while read LINE ; do
+ echo $LINE
+ HASH=`openssl x509 -subject_hash -in $CERTDIR/$LINE -noout`
+ cp $CERTDIR/$LINE $HERE/certs/$HASH.0; chmod 600 $HERE/certs/$HASH.0
+ cp $CERTDIR/$LINE $HERE/certs ; chmod 600 $HERE/certs/$LINE
+done < $LOF
+rm -f $LOF
+