summaryrefslogtreecommitdiff
path: root/tools/c_issuer
blob: a885b24b7baec599d2db49c91be9e2fb91a2ae9f (plain)
1
2
3
4
5
6
7
8
9
10
#!/bin/sh
#
# print out the issuer
#

for i in $*
do
	n=`ssleay x509 -issuer -noout -in $i`
	echo "$i\t$n"
done