File Coverage

lib/Crypt/Perl/X/ECDSA/CharacteristicTwoUnsupported.pm
Criterion Covered Total %
statement 12 13 92.3
branch 1 2 50.0
condition n/a
subroutine 4 4 100.0
pod 0 1 0.0
total 17 20 85.0


line stmt bran cond sub pod time code
1             package Crypt::Perl::X::ECDSA::CharacteristicTwoUnsupported;
2              
3 1     1   1020 use strict;
  1         7  
  1         49  
4 1     1   8 use warnings;
  1         7  
  1         69  
5              
6 1     1   14 use parent 'Crypt::Perl::X::Base';
  1         7  
  1         28  
7              
8             sub new {
9 120     120 0 865 my ($class, $curve_name) = @_;
10              
11 120 50       451 if ($curve_name) {
12 0         0 return $class->SUPER::new( "This library does not support ECDSA curves that use Characteristic-2 fields, like “$curve_name”.", { curve_name => $curve_name } );
13             }
14              
15 120         785 return $class->SUPER::new( "This library does not support ECDSA curves that use Characteristic-2 fields." );
16             }
17              
18             1;