]> git.ipfire.org Git - thirdparty/openssl.git/blob - tools/c_hash
Import of old SSLeay release: SSLeay 0.8.1b
[thirdparty/openssl.git] / tools / c_hash
1 #!/bin/sh
2 # print out the hash values
3 #
4
5 for i in $*
6 do
7 h=`ssleay x509 -hash -noout -in $i`
8 echo "$h.0 => $i"
9 done