File Coverage

blib/lib/Crypt/Random/Source/Weak/devurandom.pm
Criterion Covered Total %
statement 7 7 100.0
branch n/a
condition n/a
subroutine 3 3 100.0
pod 0 1 0.0
total 10 11 90.9


line stmt bran cond sub pod time code
1             package Crypt::Random::Source::Weak::devurandom;
2             # ABSTRACT: A weak random data source using F
3              
4             our $VERSION = '0.12';
5              
6 3     3   1535 use Moo;
  3         4  
  3         15  
7              
8             extends qw(
9             Crypt::Random::Source::Weak
10             Crypt::Random::Source::Base::RandomDevice
11             );
12 3     3   575 use namespace::clean;
  3         3  
  3         18  
13              
14 5     5 0 349 sub default_path { "/dev/urandom" }
15              
16             1;
17              
18             =pod
19              
20             =encoding UTF-8
21              
22             =head1 NAME
23              
24             Crypt::Random::Source::Weak::devurandom - A weak random data source using F
25              
26             =head1 VERSION
27              
28             version 0.12
29              
30             =head1 SYNOPSIS
31              
32             use Crypt::Random::Source::Weak::devurandom;
33              
34             =head1 SUPPORT
35              
36             Bugs may be submitted through L
37             (or L).
38              
39             =head1 AUTHOR
40              
41             יובל קוג'מן (Yuval Kogman)
42              
43             =head1 COPYRIGHT AND LICENCE
44              
45             This software is copyright (c) 2008 by Yuval Kogman.
46              
47             This is free software; you can redistribute it and/or modify it under
48             the same terms as the Perl 5 programming language system itself.
49              
50             =cut
51              
52             __END__