File Coverage

lib/Crypt/Perl/X509/Extension/keyUsage.pm
Criterion Covered Total %
statement 30 31 96.7
branch 1 2 50.0
condition n/a
subroutine 10 10 100.0
pod 0 1 0.0
total 41 44 93.1


line stmt bran cond sub pod time code
1             package Crypt::Perl::X509::Extension::keyUsage;
2              
3 1     1   578 use strict;
  1         2  
  1         31  
4 1     1   6 use warnings;
  1         2  
  1         48  
5              
6             =encoding utf-8
7              
8             =head1 NAME
9              
10             Crypt::Perl::X509::Extension::keyUsage
11              
12             =head1 SYNOPSIS
13              
14             my $usage_obj = Crypt::Perl::X509::Extension::keyUsage->new(
15             qw(
16             digitalSignature
17             contentCommitment
18             keyEncipherment
19             dataEncipherment
20             keyAgreement
21             keyCertSign
22             cRLSign
23             encipherOnly
24             decipherOnly
25             )
26             );
27              
28             =head1 SEE ALSO
29              
30             L
31              
32             =cut
33              
34 1     1   5 use parent qw( Crypt::Perl::X509::Extension );
  1         2  
  1         5  
35              
36 1     1   560 use Crypt::Perl::ASN1::BitString ();
  1         5  
  1         20  
37 1     1   6 use Crypt::Perl::X ();
  1         2  
  1         21  
38              
39 1     1   5 use constant OID => '2.5.29.15';
  1         6  
  1         79  
40              
41 1     1   7 use constant ASN1 => <
  1         2  
  1         45  
42             keyUsage ::= BIT STRING
43             END
44              
45 1     1   6 use constant CRITICAL => 1;
  1         6  
  1         293  
46              
47             #The original bit values are “little-endian”.
48             #We might as well transmogrify these values for ease of use here.
49             my @_bits = qw(
50             digitalSignature
51             contentCommitment
52             keyEncipherment
53             dataEncipherment
54             keyAgreement
55             keyCertSign
56             cRLSign
57             encipherOnly
58             decipherOnly
59             );
60              
61             sub new {
62 6     6 0 53 my ($class, @usages) = @_;
63              
64             #Use the modern name
65 6         66 $_ =~ s<\AnonRepudiation\z> for @usages;
66              
67 6 50       39 if (!@usages) {
68 0         0 die Crypt::Perl::X::create('Generic', 'Need usages!');
69             }
70              
71 6         59 return bless \@usages, $class;
72             }
73              
74             sub _encode_params {
75 6     6   41 my ($self) = @_;
76              
77 6         55 return Crypt::Perl::ASN1::BitString::encode( \@_bits, [ @$self ] );
78             }
79              
80             1;