]> git.ipfire.org Git - thirdparty/openssl.git/blame - tools/c_name
Import of old SSLeay release: SSLeay 0.8.1b
[thirdparty/openssl.git] / tools / c_name
CommitLineData
d02b48c6
RE
1#!/bin/sh
2#
3# print the subject
4#
5
6for i in $*
7do
8 n=`ssleay x509 -subject -noout -in $i`
9 echo "$i $n"
10done