File Coverage

blib/lib/Crypt/Yescrypt.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::Yescrypt;
2             $Crypt::Yescrypt::VERSION = '0.004';
3 2     2   318558 use strict;
  2         5  
  2         88  
4 2     2   18 use warnings;
  2         5  
  2         149  
5              
6 2     2   14 use XSLoader;
  2         4  
  2         92  
7             XSLoader::load('Crypt::Yescrypt');
8              
9 2     2   11 use Exporter 5.57 'import';
  2         51  
  2         193  
10             our @EXPORT_OK = qw(yescrypt yescrypt_check yescrypt_needs_rehash yescrypt_kdf);
11              
12             1;
13              
14             # ABSTRACT: A Perl interface to the yescrypt password hash
15              
16             __END__