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

for i in $*
do
	n=`openssl x509 -issuer -noout -in $i`
	echo "$i	$n"
done
OpenPOWER on IntegriCloud