Revision e8ccaee31caa9376dd752b45a8f1a62259a69867 authored by Matt Caswell on 15 January 2015, 15:05:59 UTC, committed by Matt Caswell on 15 January 2015, 15:05:59 UTC
Reviewed-by: Stephen Henson <steve@openssl.org>
1 parent 60431d0
Raw File
c_issuer
#!/bin/sh
#
# print out the issuer
#

for i in $*
do
	n=`openssl x509 -issuer -noout -in $i`
	echo "$i	$n"
done
back to top