File Coverage

lib/Crypt/Perl/X/TooLongToSign.pm
Criterion Covered Total %
statement 11 11 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod 0 1 0.0
total 15 16 93.7


line stmt bran cond sub pod time code
1             package Crypt::Perl::X::TooLongToSign;
2              
3 2     2   1923 use strict;
  2         14  
  2         100  
4 2     2   19 use warnings;
  2         12  
  2         138  
5              
6 2     2   12 use parent 'Crypt::Perl::X::Base';
  2         7  
  2         46  
7              
8             sub new {
9 42     42 0 586 my ($class, $key_bits, $signee_bits) = @_;
10              
11 42         963 return $class->SUPER::new( "A $key_bits-bit key cannot sign a $signee_bits-bit payload!", { key_bits => $key_bits, payload_bits => $signee_bits } );
12             }
13              
14             1;