]> git.ipfire.org Git - thirdparty/openssl.git/blame - tools/c_info
Apply changes from the 1.0.0 branch.
[thirdparty/openssl.git] / tools / c_info
CommitLineData
d02b48c6
RE
1#!/bin/sh
2#
3# print the subject
4#
5
6for i in $*
7do
724e095e 8 n=`openssl x509 -subject -issuer -enddate -noout -in $i`
d02b48c6
RE
9 echo "$i"
10 echo "$n"
11 echo "--------"
12done