File Coverage

blib/lib/Crypt/SEAL2.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::SEAL2;
2              
3 3     3   795939 use strict;
  3         8  
  3         124  
4 3     3   16 use warnings;
  3         5  
  3         334  
5             require Exporter;
6              
7             our @EXPORT_OK = qw(new encrypt decrypt keysize reset repos);
8             our $VERSION = '1.0.4';
9             our @ISA = qw(Exporter);
10              
11             require XSLoader;
12             XSLoader::load('Crypt::SEAL2', $VERSION);
13              
14             # Preloaded methods go here.
15              
16             1;
17              
18             __END__