]> CyberLeo.Net >> Repos - FreeBSD/releng/8.1.git/blob - crypto/openssl/tools/c_info
Copy stable/8 to releng/8.1 in preparation for 8.1-RC1.
[FreeBSD/releng/8.1.git] / crypto / openssl / tools / c_info
1 #!/bin/sh
2 #
3 # print the subject
4 #
5
6 for i in $*
7 do
8         n=`openssl x509 -subject -issuer -enddate -noout -in $i`
9         echo "$i"
10         echo "$n"
11         echo "--------"
12 done