line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Crypt::Perl::Math; |
2
|
|
|
|
|
|
|
|
3
|
8
|
|
|
8
|
|
110277
|
use strict; |
|
8
|
|
|
|
|
18
|
|
|
8
|
|
|
|
|
186
|
|
4
|
8
|
|
|
8
|
|
29
|
use warnings; |
|
8
|
|
|
|
|
12
|
|
|
8
|
|
|
|
|
151
|
|
5
|
|
|
|
|
|
|
|
6
|
8
|
|
|
8
|
|
339
|
use Crypt::Perl::BigInt (); |
|
8
|
|
|
|
|
14
|
|
|
8
|
|
|
|
|
91
|
|
7
|
8
|
|
|
8
|
|
2276
|
use Crypt::Perl::RNG (); |
|
8
|
|
|
|
|
16
|
|
|
8
|
|
|
|
|
974
|
|
8
|
|
|
|
|
|
|
|
9
|
|
|
|
|
|
|
sub ceil { |
10
|
66
|
50
|
|
66
|
0
|
53692
|
return int($_[0]) if $_[0] <= 0; |
11
|
|
|
|
|
|
|
|
12
|
66
|
|
|
|
|
422
|
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
|
20472
|
my ($limit) = @_; |
19
|
|
|
|
|
|
|
|
20
|
324
|
|
|
|
|
683
|
my $limit_bit_count; |
21
|
324
|
100
|
66
|
|
|
3810
|
if (ref($limit) && (ref $limit)->isa('Math::BigInt')) { |
22
|
304
|
|
|
|
|
1378
|
$limit_bit_count = length($limit->as_bin()) - 2; |
23
|
|
|
|
|
|
|
} |
24
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
#Is this ever needed?? |
26
|
|
|
|
|
|
|
else { |
27
|
20
|
|
|
|
|
74
|
$limit_bit_count = length sprintf '%b', $limit; |
28
|
|
|
|
|
|
|
} |
29
|
|
|
|
|
|
|
|
30
|
324
|
|
|
|
|
255830
|
my $rand; |
31
|
324
|
|
|
|
|
521
|
do { |
32
|
420
|
|
|
|
|
333073
|
$rand = Crypt::Perl::BigInt->from_bin( Crypt::Perl::RNG::bit_string($limit_bit_count) ); |
33
|
|
|
|
|
|
|
} while $rand > $limit; |
34
|
|
|
|
|
|
|
|
35
|
324
|
|
|
|
|
1317244
|
return $rand; |
36
|
|
|
|
|
|
|
} |
37
|
|
|
|
|
|
|
|
38
|
|
|
|
|
|
|
1; |