2
0
mirror of https://github.com/openssl/openssl.git synced 2025-03-01 19:28:10 +08:00
openssl/tools/c_issuer
1999-01-02 15:52:11 +00:00

11 lines
113 B
Bash

#!/bin/sh
#
# print out the issuer
#
for i in $*
do
n=`openssl x509 -issuer -noout -in $i`
echo "$i\t$n"
done