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   1058 use strict;
  1         10  
  1         56  
4 1     1   10 use warnings;
  1         6  
  1         68  
5              
6 1     1   10 use parent 'Crypt::Perl::X::Base';
  1         31  
  1         35  
7              
8             sub new {
9 120     120 0 569 my ($class, $curve_name) = @_;
10              
11 120 50       383 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         1056 return $class->SUPER::new( "This library does not support ECDSA curves that use Characteristic-2 fields." );
16             }
17              
18             1;