File Coverage

blib/lib/Crypto/ECC/Signature.pm
Criterion Covered Total %
statement 3 3 100.0
branch n/a
condition n/a
subroutine 1 1 100.0
pod n/a
total 4 4 100.0


line stmt bran cond sub pod time code
1             package Crypto::ECC::Signature;
2             $Crypto::ECC::Signature::VERSION = '0.003';
3 1     1   7 use Moo;
  1         2  
  1         5  
4              
5             with "Object::GMP";
6              
7             has r => ( is => 'ro' );
8             has s => ( is => 'ro' );
9              
10             around BUILDARGS => __PACKAGE__->BUILDARGS_val2gmp(qw(r s));
11              
12             1;