File Coverage

blib/lib/Digest/FP56x1xor.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::FP56x1xor;
2              
3 1     1   57576 use 5.008008;
  1         4  
  1         49  
4 1     1   6 use strict;
  1         2  
  1         39  
5 1     1   6 use warnings;
  1         7  
  1         311  
6              
7             require Exporter;
8              
9             our @ISA = qw(Exporter);
10              
11             # Items to export into callers namespace by default. Note: do not export
12             # names by default without a very good reason. Use EXPORT_OK instead.
13             # Do not simply export all your public functions/methods/constants.
14              
15             # This allows declaration use Digest::FP56x1xor ':all';
16             # If you do not need this, moving things directly into @EXPORT or @EXPORT_OK
17             # will save memory.
18             our %EXPORT_TAGS = ( 'all' => [ qw(
19             gen cat gen_l cat_l x2l l2x
20             cooked
21             ) ] );
22              
23             our @EXPORT_OK = ( @{ $EXPORT_TAGS{'all'} } );
24              
25             our @EXPORT = qw(
26            
27             );
28              
29             our $VERSION = '0.15'; # keep in sync with ../../Digest-FP56x1xor.xs
30              
31             require XSLoader;
32             XSLoader::load('Digest::FP56x1xor', $VERSION);
33              
34             # Preloaded methods go here.
35              
36             1;
37             __END__