1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-09-07 22:20:15 +00:00
QB64-PE/internal/c/mingw32/opt/ssl/misc/c_hash
2019-01-01 22:40:38 +11:00

9 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