1
0
mirror of https://git.FreeBSD.org/src.git synced 2025-01-13 14:40:22 +00:00
freebsd/crypto/openssl/tools/c_issuer
2005-02-25 05:39:05 +00:00

11 lines
112 B
Bash

#!/bin/sh
#
# print out the issuer
#
for i in $*
do
n=`openssl x509 -issuer -noout -in $i`
echo "$i $n"
done