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.160010'; # TRIAL VERSION
4             our $AUTHORITY = 'cpan:ARODLAND'; # AUTHORITY
5 6     6   4482 use Moo::Role 2;
  6         160  
  6         50  
6 6     6   2262 use strictures 2;
  6         41  
  6         288  
7 6     6   1419 use namespace::autoclean;
  6         13  
  6         38  
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__