]> CyberLeo.Net >> Repos - FreeBSD/releng/8.1.git/blob - crypto/openssl/tools/c_hash
Copy stable/8 to releng/8.1 in preparation for 8.1-RC1.
[FreeBSD/releng/8.1.git] / crypto / openssl / tools / c_hash
1 #!/bin/sh
2 # print out the hash values 
3 #
4
5 for i in $*
6 do
7         h=`openssl x509 -hash -noout -in $i`
8         echo "$h.0 => $i"
9 done