File Coverage

lib/Crypt/Perl/Math.pm
Criterion Covered Total %
statement 23 23 100.0
branch 3 4 75.0
condition 2 3 66.6
subroutine 6 6 100.0
pod 0 2 0.0
total 34 38 89.4


line stmt bran cond sub pod time code
1             package Crypt::Perl::Math;
2              
3 8     8   123222 use strict;
  8         31  
  8         200  
4 8     8   37 use warnings;
  8         13  
  8         166  
5              
6 8     8   351 use Crypt::Perl::BigInt ();
  8         15  
  8         103  
7 8     8   2575 use Crypt::Perl::RNG ();
  8         17  
  8         1047  
8              
9             sub ceil {
10 66 50   66 0 59315 return int($_[0]) if $_[0] <= 0;
11              
12 66         371 return int($_[0]) + int( !!($_[0] - int $_[0]) );
13             }
14              
15             #limit is inclusive
16             #cf. Python’s random.randint()
17             sub randint {
18 324     324 0 20821 my ($limit) = @_;
19              
20 324         1162 my $limit_bit_count;
21 324 100 66     4892 if (ref($limit) && (ref $limit)->isa('Math::BigInt')) {
22 304         1789 $limit_bit_count = length($limit->as_bin()) - 2;
23             }
24              
25             #Is this ever needed??
26             else {
27 20         61 $limit_bit_count = length sprintf '%b', $limit;
28             }
29              
30 324         303084 my $rand;
31 324         862 do {
32 425         427348 $rand = Crypt::Perl::BigInt->from_bin( Crypt::Perl::RNG::bit_string($limit_bit_count) );
33             } while $rand > $limit;
34              
35 324         1548241 return $rand;
36             }
37              
38             1;