Files
GmSSL/tools/c_hash
zhaoxiaomeng 53af3b51ae quantum init
2018-01-04 13:40:59 +08:00

10 lines
119 B
Bash

#!/bin/sh
# print out the hash values
#
for i in $*
do
h=`openssl x509 -hash -noout -in $i`
echo "$h.0 => $i"
done