File Coverage

lib/Crypt/Perl/X509/Extension/authorityInfoAccess.pm
Criterion Covered Total %
statement 12 12 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod n/a
total 16 16 100.0


line stmt bran cond sub pod time code
1             package Crypt::Perl::X509::Extension::authorityInfoAccess;
2              
3 1     1   676 use strict;
  1         5  
  1         31  
4 1     1   12 use warnings;
  1         16  
  1         33  
5              
6             =encoding utf-8
7              
8             =head1 NAME
9              
10             Crypt::Perl::X509::Extension::authorityInfoAccess
11              
12             =head1 SEE ALSO
13              
14             L
15              
16             =cut
17              
18 1     1   5 use parent qw( Crypt::Perl::X509::InfoAccessBase );
  1         2  
  1         15  
19              
20             use constant {
21 1         94 OID => '1.3.6.1.5.5.7.1.1',
22             OID_ocsp => '1.3.6.1.5.5.7.48.1',
23             OID_caIssuers => '1.3.6.1.5.5.7.48.2',
24 1     1   87 };
  1         9  
25              
26             1;