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   59651 use 5.014000;
  1         4  
4 1     1   8 use strict;
  1         4  
  1         23  
5 1     1   4 use warnings;
  1         2  
  1         46  
6 1     1   430 use parent qw/Exporter/;
  1         256  
  1         4  
7              
8             our @EXPORT_OK = qw/highway_hash64 highway_hash128 highway_hash256/;
9             our @EXPORT = @EXPORT_OK;
10              
11             our $VERSION = '0.001';
12              
13 1     1   565 use Math::Int64;
  1         4198  
  1         5  
14              
15             require XSLoader;
16             XSLoader::load('Digest::HighwayHash', $VERSION);
17              
18             1;
19             __END__