line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Crypto::ECC; |
2
|
|
|
|
|
|
|
$Crypto::ECC::VERSION = '0.003'; |
3
|
1
|
|
|
1
|
|
69850
|
use Crypto::ECC::CurveFp; |
|
1
|
|
|
|
|
4
|
|
|
1
|
|
|
|
|
35
|
|
4
|
1
|
|
|
1
|
|
479
|
use Crypto::ECC::Point; |
|
1
|
|
|
|
|
7
|
|
|
1
|
|
|
|
|
27
|
|
5
|
1
|
|
|
1
|
|
477
|
use Crypto::ECC::PublicKey; |
|
1
|
|
|
|
|
3
|
|
|
1
|
|
|
|
|
33
|
|
6
|
1
|
|
|
1
|
|
456
|
use Crypto::ECC::Signature; |
|
1
|
|
|
|
|
14
|
|
|
1
|
|
|
|
|
34
|
|
7
|
|
|
|
|
|
|
|
8
|
1
|
|
|
1
|
|
11
|
use base 'Exporter'; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
159
|
|
9
|
|
|
|
|
|
|
|
10
|
|
|
|
|
|
|
our @EXPORT = qw( |
11
|
|
|
|
|
|
|
$Point |
12
|
|
|
|
|
|
|
$CurveFp |
13
|
|
|
|
|
|
|
$PublicKey |
14
|
|
|
|
|
|
|
$Signature |
15
|
|
|
|
|
|
|
); |
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
our $CurveFp = 'Crypto::ECC::CurveFp'; |
18
|
|
|
|
|
|
|
our $Point = 'Crypto::ECC::Point'; |
19
|
|
|
|
|
|
|
our $PublicKey = 'Crypto::ECC::PublicKey'; |
20
|
|
|
|
|
|
|
our $Signature = 'Crypto::ECC::Signature'; |
21
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
1; |