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   2780 use strict;
  2         21  
  2         142  
4 2     2   46 use warnings;
  2         9  
  2         206  
5              
6 2     2   32 use parent 'Crypt::Perl::X::Base';
  2         12  
  2         67  
7              
8             sub new {
9 42     42 0 364 my ($class, $key_bits, $signee_bits) = @_;
10              
11 42         999 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;