File Coverage

blib/lib/Crypt/Random/Source/Strong.pm
Criterion Covered Total %
statement 7 7 100.0
branch n/a
condition n/a
subroutine 3 3 100.0
pod 1 1 100.0
total 11 11 100.0


line stmt bran cond sub pod time code
1             package Crypt::Random::Source::Strong;
2             # ABSTRACT: Abstract base class for strong random data sources
3              
4             our $VERSION = '0.11';
5              
6 2     2   1309 use Moo;
  2         4  
  2         12  
7 2     2   512 use namespace::clean;
  2         10  
  2         11  
8              
9 1     1 1 12 sub is_strong { 1 }
10              
11             1;
12              
13             =pod
14              
15             =encoding UTF-8
16              
17             =head1 NAME
18              
19             Crypt::Random::Source::Strong - Abstract base class for strong random data sources
20              
21             =head1 VERSION
22              
23             version 0.11
24              
25             =head1 SYNOPSIS
26              
27             use Moose;
28              
29             extends qw(Crypt::Random::Source::Strong);
30              
31             =head1 DESCRIPTION
32              
33             This is an abstract base class. There isn't much to describe.
34              
35             =head1 METHODS
36              
37             =head2 is_strong
38              
39             Returns true
40              
41             =head1 SUPPORT
42              
43             Bugs may be submitted through L
44             (or L).
45              
46             =head1 AUTHOR
47              
48             יובל קוג'מן (Yuval Kogman)
49              
50             =head1 COPYRIGHT AND LICENCE
51              
52             This software is copyright (c) 2008 by Yuval Kogman.
53              
54             This is free software; you can redistribute it and/or modify it under
55             the same terms as the Perl 5 programming language system itself.
56              
57             =cut
58              
59             __END__