xref: /minix3/crypto/external/bsd/openssl/dist/tools/c_hash (revision ebfedea0ce5bbe81e252ddf32d732e40fb633fae)
1#!/bin/sh
2# print out the hash values
3#
4
5for i in $*
6do
7	h=`openssl x509 -hash -noout -in $i`
8	echo "$h.0 => $i"
9done
10