File Coverage

blib/lib/Crypt/PBKDF2/Hash.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::PBKDF2::Hash;
2             # ABSTRACT: Abstract role for PBKDF2 hashing algorithms.
3             our $VERSION = '0.161520'; # VERSION
4             our $AUTHORITY = 'cpan:ARODLAND'; # AUTHORITY
5 6     6   2613 use Moo::Role 2;
  6         111  
  6         38  
6 6     6   1485 use strictures 2;
  6         32  
  6         197  
7 6     6   800 use namespace::autoclean;
  6         6  
  6         47  
8              
9             requires 'hash_len';
10              
11             requires 'generate';
12              
13             requires 'to_algo_string';
14              
15             requires 'from_algo_string';
16              
17             1;
18              
19             __END__