File Coverage

blib/lib/Crypt/OpenSSL/PBKDF2.pm
Criterion Covered Total %
statement 12 12 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod n/a
total 16 16 100.0


line stmt bran cond sub pod time code
1             package Crypt::OpenSSL::PBKDF2;
2              
3 1     1   145869 use strict;
  1         3  
  1         46  
4 1     1   7 use Carp;
  1         9  
  1         97  
5              
6 1     1   6 use vars qw($VERSION @ISA @EXPORT @EXPORT_OK $AUTOLOAD);
  1         2  
  1         171  
7              
8             require Exporter;
9             require DynaLoader;
10 1     1   808 use AutoLoader;
  1         2288  
  1         8  
11              
12             @ISA = qw(Exporter DynaLoader);
13              
14             @EXPORT_OK = qw( derive derive_bin );
15              
16             $VERSION = '0.10';
17              
18             bootstrap Crypt::OpenSSL::PBKDF2 $VERSION;
19              
20             1;
21             __END__