File Coverage

blib/lib/Filter/Rijndael.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 Filter::Rijndael;
2              
3             require 5.8.0;
4              
5 1     1   571 use strict;
  1         1  
  1         34  
6 1     1   3 use warnings;
  1         1  
  1         27  
7 1     1   15 use utf8;
  1         2  
  1         5  
8              
9             require Exporter;
10             require DynaLoader;
11              
12             our @ISA = qw( Exporter DynaLoader );
13              
14             # Items to export into callers namespace by default. Note: do not export
15             # names by default without a very good reason. Use EXPORT_OK instead.
16             # Do not simply export all your public functions/methods/constants.
17              
18             # This allows declaration use Filter::Rijndael ':all';
19             # If you do not need this, moving things directly into @EXPORT or @EXPORT_OK
20             # will save memory.
21             our %EXPORT_TAGS = ( 'all' => [ qw() ] );
22             our @EXPORT_OK = ( @{ $EXPORT_TAGS{'all'} } );
23             our @EXPORT = ();
24             our $VERSION = '0.03';
25              
26             bootstrap Filter::Rijndael $VERSION;
27              
28             # Preloaded methods go here.
29              
30             return 1;
31              
32             __END__