mirror of
https://github.com/openssl/openssl.git
synced 2024-11-21 01:15:20 +08:00
11 lines
112 B
Plaintext
11 lines
112 B
Plaintext
|
#!/bin/sh
|
||
|
#
|
||
|
# print out the issuer
|
||
|
#
|
||
|
|
||
|
for i in $*
|
||
|
do
|
||
|
n=`ssleay x509 -issuer -noout -in $i`
|
||
|
echo "$i\t$n"
|
||
|
done
|