File Coverage

blib/lib/Crypt/Noekeon.pm
Criterion Covered Total %
statement 6 6 100.0
branch n/a
condition n/a
subroutine 2 2 100.0
pod n/a
total 8 8 100.0


line stmt bran cond sub pod time code
1             package Crypt::Noekeon;
2              
3 9     9   2387675 use strict;
  9         55  
  9         365  
4 9     9   54 use warnings;
  9         19  
  9         995  
5             require Exporter;
6              
7             our @EXPORT_OK = qw(keysize blocksize new encrypt decrypt);
8             our $VERSION = '1.0.2';
9             our @ISA = qw(Exporter);
10              
11             require XSLoader;
12             XSLoader::load('Crypt::Noekeon', $VERSION);
13              
14             # Preloaded methods go here.
15              
16             1;
17              
18             __END__