Your IP : 216.73.216.1


Current Path : /usr/local/openssl-1.0.0-bak/misc/
Upload File :
Current File : //usr/local/openssl-1.0.0-bak/misc/c_hash

#!/bin/sh
# print out the hash values 
#

for i in $*
do
	h=`openssl x509 -hash -noout -in $i`
	echo "$h.0 => $i"
done