File Coverage

lib/Crypt/Perl/X509/Extension/subjectInfoAccess.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::subjectInfoAccess;
2              
3 1     1   455 use strict;
  1         3  
  1         26  
4 1     1   5 use warnings;
  1         1  
  1         27  
5              
6             =encoding utf-8
7              
8             =head1 NAME
9              
10             Crypt::Perl::X509::Extension::subjectInfoAccess
11              
12             =head1 SYNOPSIS
13              
14             my $usage_obj = Crypt::Perl::X509::Extension::subjectInfoAccess->new(
15             );
16              
17             =head1 SEE ALSO
18              
19             L
20              
21             =cut
22              
23 1     1   4 use parent qw( Crypt::Perl::X509::InfoAccessBase );
  1         3  
  1         5  
24              
25             use constant {
26 1         69 OID => '1.3.6.1.5.5.7.1.11',
27             OID_caRepository => '1.3.6.1.5.5.7.48.5',
28             OID_timeStamping => '1.3.6.1.5.5.7.48.3',
29 1     1   87 };
  1         5  
30              
31             1;