File Coverage

blib/lib/Digest/DJB.pm
Criterion Covered Total %
statement 9 9 100.0
branch n/a
condition n/a
subroutine 3 3 100.0
pod n/a
total 12 12 100.0


line stmt bran cond sub pod time code
1             package Digest::DJB;
2              
3 1     1   618 use 5.006_00;
  1         3  
  1         30  
4 1     1   4 use strict;
  1         1  
  1         24  
5 1     1   4 use warnings;
  1         4  
  1         106  
6              
7             require Exporter;
8             require DynaLoader;
9              
10             our @ISA = qw(Exporter DynaLoader);
11              
12             # Items to export into callers namespace by default. Note: do not export
13             # names by default without a very good reason. Use EXPORT_OK instead.
14             # Do not simply export all your public functions/methods/constants.
15              
16             # This allows declaration use Digest::DJB ':all';
17             # If you do not need this, moving things directly into @EXPORT or @EXPORT_OK
18             # will save memory.
19              
20             our @EXPORT_OK = qw(djb);
21              
22             our @EXPORT = qw( );
23              
24             our $VERSION = "1.00";
25              
26             bootstrap Digest::DJB $VERSION;
27              
28             # Preloaded methods go here.
29              
30             1;
31             __END__