]> git.ipfire.org Git - thirdparty/openssl.git/blame - tools/c_issuer
Binary is now apps/openssl not apps/ssleay so use the new name when
[thirdparty/openssl.git] / tools / c_issuer
CommitLineData
d02b48c6
RE
1#!/bin/sh
2#
3# print out the issuer
4#
5
6for i in $*
7do
8 n=`ssleay x509 -issuer -noout -in $i`
9 echo "$i\t$n"
10done