Revision d1321464f6c609d106d6af9a4e599661bf6c59b7 authored by Dr. Stephen Henson on 25 September 2011, 15:51:57 UTC, committed by Dr. Stephen Henson on 25 September 2011, 15:51:57 UTC
1 parent a0055fb
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