]> CyberLeo.Net >> Repos - FreeBSD/releng/7.2.git/blob - crypto/openssl/tools/c_issuer
Create releng/7.2 from stable/7 in preparation for 7.2-RELEASE.
[FreeBSD/releng/7.2.git] / crypto / openssl / tools / c_issuer
1 #!/bin/sh
2 #
3 # print out the issuer
4 #
5
6 for i in $*
7 do
8         n=`openssl x509 -issuer -noout -in $i`
9         echo "$i        $n"
10 done