File Coverage

blib/lib/Crypto/ECC.pm
Criterion Covered Total %
statement 15 15 100.0
branch n/a
condition n/a
subroutine 5 5 100.0
pod n/a
total 20 20 100.0


line stmt bran cond sub pod time code
1             package Crypto::ECC;
2             $Crypto::ECC::VERSION = '0.002';
3 1     1   68657 use Crypto::ECC::CurveFp;
  1         4  
  1         31  
4 1     1   458 use Crypto::ECC::Point;
  1         4  
  1         29  
5 1     1   470 use Crypto::ECC::PublicKey;
  1         4  
  1         32  
6 1     1   440 use Crypto::ECC::Signature;
  1         3  
  1         29  
7              
8 1     1   6 use base 'Exporter';
  1         3  
  1         153  
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;