File Coverage

blib/lib/Crypt/OpenSSL/FASTPBKDF2.pm
Criterion Covered Total %
statement 12 12 100.0
branch n/a
condition n/a
subroutine 5 5 100.0
pod 1 1 100.0
total 18 18 100.0


line stmt bran cond sub pod time code
1             package Crypt::OpenSSL::FASTPBKDF2;
2              
3 1     1   19803 use 5.020002;
  1         6  
4 1     1   10 use strict;
  1         3  
  1         37  
5 1     1   6 use warnings;
  1         9  
  1         48  
6 1     1   7 use vars qw($VERSION @ISA);
  1         3  
  1         147  
7              
8             require Exporter;
9             require DynaLoader;
10              
11             @ISA = qw(Exporter DynaLoader);
12              
13             our @EXPORT_OK = qw(
14             fastpbkdf2_hmac_sha1 fastpbkdf2_hmac_sha256 fastpbkdf2_hmac_sha512
15             );
16              
17             $VERSION = '0.01';
18              
19 1     1 1 757 sub dl_load_flags { 0x01 }
20             # Preloaded methods go here.
21             __PACKAGE__->bootstrap($VERSION);
22              
23             1;
24             __END__