File Coverage

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