Welcome to mirror list, hosted at ThFree Co, Russian Federation.

c_issuer « tools - github.com/openssl/openssl.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4c691201bb473cb93b5a13c55ca83fa0ea4acebe (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\t$n"
done