blob: a885b24b7baec599d2db49c91be9e2fb91a2ae9f [file] [log] [blame]
#!/bin/sh
#
# print out the issuer
#
for i in $*
do
n=`ssleay x509 -issuer -noout -in $i`
echo "$i\t$n"
done