Sign in
flutter
/
third_party
/
openssl
/
a06cd5d056c6a5b1d161786873e21a5e53d554d8
/
.
/
tools
/
c_issuer
blob: 55821ab740d5ac02475fb4cfe9e32a22837b5b95 [
file
] [
log
] [
blame
]
#!/bin/sh
#
# print out the issuer
#
for
i
in
$
*
do
n
=
`openssl x509 -issuer -noout -in $i`
echo
"$i $n"
done