line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Crypt::Perl::X509::Extension::freshestCRL; |
2
|
|
|
|
|
|
|
|
3
|
1
|
|
|
1
|
|
690
|
use strict; |
|
1
|
|
|
|
|
11
|
|
|
1
|
|
|
|
|
34
|
|
4
|
1
|
|
|
1
|
|
14
|
use warnings; |
|
1
|
|
|
|
|
9
|
|
|
1
|
|
|
|
|
33
|
|
5
|
|
|
|
|
|
|
|
6
|
|
|
|
|
|
|
=encoding utf-8 |
7
|
|
|
|
|
|
|
|
8
|
|
|
|
|
|
|
=head1 NAME |
9
|
|
|
|
|
|
|
|
10
|
|
|
|
|
|
|
Crypt::Perl::X509::Extension::freshestCRL |
11
|
|
|
|
|
|
|
|
12
|
|
|
|
|
|
|
=head1 SEE ALSO |
13
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
L |
15
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
=cut |
17
|
|
|
|
|
|
|
|
18
|
1
|
|
|
1
|
|
5
|
use parent qw( Crypt::Perl::X509::Extension::cRLDistributionPoints ); |
|
1
|
|
|
|
|
13
|
|
|
1
|
|
|
|
|
9
|
|
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
use constant { |
21
|
1
|
|
|
|
|
93
|
OID => '2.5.29.46', |
22
|
|
|
|
|
|
|
CRITICAL => 0, |
23
|
1
|
|
|
1
|
|
69
|
}; |
|
1
|
|
|
|
|
3
|
|
24
|
|
|
|
|
|
|
|
25
|
1
|
|
|
1
|
|
8
|
use constant ASN1 => Crypt::Perl::X509::Extension::cRLDistributionPoints::ASN1() . <
|
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
82
|
|
26
|
|
|
|
|
|
|
freshestCRL ::= cRLDistributionPoints |
27
|
|
|
|
|
|
|
END |
28
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
1; |