File Coverage

lib/Crypt/Perl/ASN1/Signatures.pm
Criterion Covered Total %
statement 6 6 100.0
branch n/a
condition n/a
subroutine 2 2 100.0
pod n/a
total 8 8 100.0


line stmt bran cond sub pod time code
1             package Crypt::Perl::ASN1::Signatures;
2              
3 2     2   11 use strict;
  2         4  
  2         79  
4 2     2   10 use warnings;
  2         3  
  2         113  
5              
6             our %OID = (
7             sha224WithRSAEncryption => '1.2.840.113549.1.1.14',
8             sha256WithRSAEncryption => '1.2.840.113549.1.1.11',
9             sha384WithRSAEncryption => '1.2.840.113549.1.1.12',
10             sha512WithRSAEncryption => '1.2.840.113549.1.1.13',
11              
12             'ecdsa-with-SHA224' => '1.2.840.10045.4.3.1',
13             'ecdsa-with-SHA256' => '1.2.840.10045.4.3.2',
14             'ecdsa-with-SHA384' => '1.2.840.10045.4.3.3',
15             'ecdsa-with-SHA512' => '1.2.840.10045.4.3.4',
16             );
17              
18             1;