Revision f4179bead44fc43734db4efcfcfa01478d161b28 authored by Dr. Stephen Henson on 16 September 2008, 11:50:05 UTC, committed by Dr. Stephen Henson on 16 September 2008, 11:50:05 UTC
1 parent fced277
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