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 3     3   20 use strict;
  3         5  
  3         86  
4 3     3   14 use warnings;
  3         6  
  3         176  
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             'ed25519' => '1.3.101.112',
18             );
19              
20             1;