]> git.ipfire.org Git - thirdparty/openssl.git/blame - tools/c_hash
Make message buffer slightly larger than message.
[thirdparty/openssl.git] / tools / c_hash
CommitLineData
d02b48c6
RE
1#!/bin/sh
2# print out the hash values
3#
4
5for i in $*
6do
724e095e 7 h=`openssl x509 -hash -noout -in $i`
d02b48c6
RE
8 echo "$h.0 => $i"
9done