File Coverage

blib/lib/Crypt/Digest/Scrypt.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 Crypt::Digest::Scrypt;
2 1     1   82023 use strict;
  1         2  
  1         28  
3 1     1   5 use warnings;
  1         1  
  1         39  
4              
5             our $VERSION = '0.02';
6              
7 1     1   4 use Exporter qw(import);
  1         2  
  1         119  
8             our @EXPORT_OK = qw(scrypt_1024_1_1_256);
9              
10             require XSLoader;
11             XSLoader::load('Crypt::Digest::Scrypt', $VERSION);
12              
13             1;
14             __END__