File Coverage

lib/Crypt/Perl/X509/Extension/subjectAltName.pm
Criterion Covered Total %
statement 18 18 100.0
branch n/a
condition n/a
subroutine 6 6 100.0
pod n/a
total 24 24 100.0


line stmt bran cond sub pod time code
1             package Crypt::Perl::X509::Extension::subjectAltName;
2              
3 4     4   204744 use strict;
  4         23  
  4         130  
4 4     4   27 use warnings;
  4         10  
  4         192  
5              
6             =encoding utf-8
7              
8             =head1 NAME
9              
10             Crypt::Perl::X509::Extension::subjectAltName - X.509 subjectAltName extension
11              
12             =head1 SYNOPSIS
13              
14             my $san = Crypt::Perl::X509::Extension::subjectAltName->new(
15             [ dNSName => 'foo.com' ],
16             [ dNSName => 'bar.com' ],
17             [ rfc822Name => 'haha@tld.com' ],
18             );
19              
20             =head1 DESCRIPTION
21              
22             Instances of this class represent a C extension
23             of an X.509 (SSL) certificate.
24              
25             You probably don’t need to
26             instantiate this class directly; instead, you can instantiate it
27             implicitly by listing out arguments to
28             L’s constructor. See that module’s
29             L for an example.
30              
31             You can also use instances of this class as arguments to
32             L’s constructor
33             to include a request for a C extension in a PKCS #10
34             Certificate Signing Request.
35              
36             =head1 SEE ALSO
37              
38             L
39              
40             =cut
41              
42 4         34 use parent qw(
43             Crypt::Perl::X509::Extension
44             Crypt::Perl::X509::GeneralNames
45 4     4   26 );
  4         9  
46              
47 4     4   318 use Crypt::Perl::X509::GeneralNames ();
  4         15  
  4         124  
48              
49 4     4   27 use constant OID => '2.5.29.17';
  4         9  
  4         343  
50              
51 4     4   26 use constant ASN1 => Crypt::Perl::X509::GeneralNames::ASN1() . <
  4         11  
  4         238  
52             subjectAltName ::= GeneralNames
53             END
54              
55             1;