File Coverage

blib/lib/Bitcoin/Crypto/Config.pm
Criterion Covered Total %
statement 11 11 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod n/a
total 15 15 100.0


line stmt bran cond sub pod time code
1             package Bitcoin::Crypto::Config;
2             $Bitcoin::Crypto::Config::VERSION = '1.008';
3 18     18   139886 use v5.10;
  18         109  
4 18     18   114 use strict;
  18         36  
  18         403  
5 18     18   94 use warnings;
  18         42  
  18         1170  
6              
7             use constant {
8 18         2663 curve_name => "secp256k1",
9             max_child_keys => (2 << 30),
10             key_max_length => 32,
11             wif_compressed_byte => "\x01",
12             compress_public_point => 1,
13             witness_version => 0,
14             max_witness_version => 16,
15 18     18   134 };
  18         39  
16              
17             1;
18