Revision 364f36f85168b186612a0bc425f745caf99c0b08 authored by Dr. Stephen Henson on 17 September 2008, 15:07:41 UTC, committed by Dr. Stephen Henson on 17 September 2008, 15:07:41 UTC
1 parent 9b809d6
Raw File
c_hash
#!/bin/sh
# print out the hash values 
#

for i in $*
do
	h=`openssl x509 -hash -noout -in $i`
	echo "$h.0 => $i"
done
back to top