openssl/tools/c_hash

10 lines
119 B
Text
Raw Normal View History

#!/bin/sh
# print out the hash values
#
for i in $*
do
1999-01-02 15:52:11 +00:00
h=`openssl x509 -hash -noout -in $i`
echo "$h.0 => $i"
done