Files
GmSSL/tools/c_issuer
zhaoxiaomeng 53af3b51ae quantum init
2018-01-04 13:40:59 +08:00

11 lines
112 B
Bash

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