File Coverage

blib/lib/Digest/HighwayHash.pm
Criterion Covered Total %
statement 14 14 100.0
branch n/a
condition n/a
subroutine 5 5 100.0
pod n/a
total 19 19 100.0


line stmt bran cond sub pod time code
1             package Digest::HighwayHash;
2              
3 1     1   53564 use 5.014000;
  1         3  
4 1     1   3 use strict;
  1         2  
  1         14  
5 1     1   3 use warnings;
  1         1  
  1         29  
6 1     1   328 use parent qw/Exporter/;
  1         265  
  1         4  
7              
8             our @EXPORT_OK = qw/highway_hash64 highway_hash128 highway_hash256/;
9             our @EXPORT = @EXPORT_OK;
10              
11             our $VERSION = '0.002';
12              
13 1     1   427 use Math::Int64;
  1         3859  
  1         2  
14              
15             require XSLoader;
16             XSLoader::load('Digest::HighwayHash', $VERSION);
17              
18             1;
19             __END__