blob: 9b11f0792b1804f4d1601af13f04f0a410f4c92c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
:
# $Id$
eval 'exec perl -w -S $0 ${1+"$@"}'
if 0;
use strict;
while (@ARGV) {
my $file = shift(@ARGV);
my ($aia, $sia, $cdp, $a, $s, $c) = qw(- - -);
next unless ($file =~ /\.cer$/);
open(F, "-|", qw(openssl x509 -noout -inform DER -text -in), $file)
or die("Couldn't run openssl x509 on $file: $!\n");
while (<F>) {
chomp;
s{^.+URI:rsync://}{};
$a = $. + 1
if (/Authority Information Access:/);
$s = $. + 1
if (/Subject Information Access:/);
$c = $. + 1
if (/X509v3 CRL Distribution Points:/);
$aia = $_
if ($a && $. == $a);
$sia = $_
if ($s && $. == $s);
$cdp = $_
if ($c && $. == $c);
}
close(F);
print("$aia $sia $cdp $file\n");
}
|