File Coverage

blib/lib/Digest/DJB32.pm
Criterion Covered Total %
statement 7 7 100.0
branch n/a
condition n/a
subroutine 3 3 100.0
pod n/a
total 10 10 100.0


line stmt bran cond sub pod time code
1             package Digest::DJB32;
2             BEGIN {
3 2     2   17241 $Digest::DJB32::AUTHORITY = 'cpan:GETTY';
4             }
5             # ABSTRACT: Digest::DJB fixed to 32bit
6             $Digest::DJB32::VERSION = '0.001';
7 2     2   15 use strict;
  2         2  
  2         61  
8 2     2   8 use warnings;
  2         2  
  2         185  
9              
10             require Exporter;
11             require DynaLoader;
12              
13             our @ISA = qw(Exporter DynaLoader);
14              
15             our @EXPORT_OK = qw( djb );
16              
17             our @EXPORT = qw( );
18              
19             bootstrap Digest::DJB32 $Digest::DJB32::VERSION;
20              
21             # Preloaded methods go here.
22              
23             1;
24              
25             __END__