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