mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-12-21 08:24:10 +01:00
7466462628
infringement reasons.
11 lines
113 B
Bash
11 lines
113 B
Bash
#!/bin/sh
|
|
#
|
|
# print out the issuer
|
|
#
|
|
|
|
for i in $*
|
|
do
|
|
n=`openssl x509 -issuer -noout -in $i`
|
|
echo "$i\t$n"
|
|
done
|