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   26632 use strict;
  1         3  
  1         34  
4 1     1   7 use Carp;
  1         3  
  1         112  
5              
6 1     1   8 use vars qw($VERSION @ISA @EXPORT @EXPORT_OK $AUTOLOAD);
  1         20  
  1         123  
7              
8             require Exporter;
9             require DynaLoader;
10 1     1   1153 use AutoLoader;
  1         1926  
  1         7  
11              
12             @ISA = qw(Exporter DynaLoader);
13              
14             @EXPORT_OK = qw( derive derive_bin );
15              
16             $VERSION = '0.04';
17              
18             bootstrap Crypt::OpenSSL::PBKDF2 $VERSION;
19              
20             # Preloaded methods go here.
21              
22             # Autoload methods go after =cut, and are processed by the autosplit program.
23              
24             1;
25             __END__