File Coverage

blib/lib/Crypt/Random/TESHA2/Config.pm
Criterion Covered Total %
statement 9 9 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod 1 1 100.0
total 14 14 100.0


line stmt bran cond sub pod time code
1             package Crypt::Random::TESHA2::Config;
2 6     6   33 use strict;
  6         12  
  6         201  
3 6     6   31 use warnings;
  6         11  
  6         1039  
4              
5             BEGIN {
6 6     6   14 $Crypt::Random::TESHA2::Config::AUTHORITY = 'cpan:DANAJ';
7 6         307 $Crypt::Random::TESHA2::Config::VERSION = '0.01';
8             }
9              
10             # Don't just export the variable, because an evil script could change it.
11              
12             # DO NOT MANUALLY ALTER THE FOLLOWING LINE: configured in Makefile.PL
13             # The value should be '1.00' in the distribution.
14             my $_entropy_per_byte = 7.00;
15              
16 7     7 1 204088 sub entropy { return $_entropy_per_byte; }
17              
18             1;
19              
20             __END__