Revision e71aab1c02e6a47ec56b1e341e80d09797d3d4de authored by Rich Salz on 18 November 2015, 21:58:40 UTC, committed by Rich Salz on 18 November 2015, 21:58:40 UTC
Reviewed-by: Steve Marquess <marquess@openssl.com>
1 parent b77390a
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