Sign in
cobalt
/
cobalt
/
2a8c847d785c1602f60915c8e0112e0aec6a15a5
/
.
/
src
/
third_party
/
openssl
/
openssl
/
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