File Coverage

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