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.003';
3 1     1   71527 use strict;
  1         12  
  1         32  
4 1     1   5 use warnings;
  1         2  
  1         32  
5              
6 1     1   8 use XSLoader;
  1         2  
  1         33  
7             XSLoader::load('Crypt::Yescrypt');
8              
9 1     1   5 use Exporter 5.57 'import';
  1         34  
  1         60  
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__