computed hash-and-url for new certificates

This commit is contained in:
Andreas Steffen
2009-09-22 12:05:37 +02:00
parent f1092e20f4
commit 1271983ab9
10 changed files with 13 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
#! /bin/bash
#
# generates the SHA-1 hash required by the RFC 4306
# HASH_AND_URL certificate fetching scheme
#
for cert in $@
do
openssl x509 -in $cert -outform der -out cert.der
hash=`sha1sum cert.der | awk '{ print $1 }'`
cp cert.der "$hash"
done
rm cert.der