Sign in
flutter
/
third_party
/
openssl
/
9ccc00ef6ea65567622e40c49aca43f2c6d79cdb
/
.
/
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