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   859 use strict;
  1         2  
  1         31  
4 1     1   5 use warnings;
  1         1  
  1         41  
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         10  
19              
20             use constant {
21 1         63 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   64 };
  1         3  
25              
26             1;