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; |