File Coverage

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