File Coverage

blib/lib/App/bcrypt.pm
Criterion Covered Total %
statement 5 5 100.0
branch n/a
condition n/a
subroutine 2 2 100.0
pod n/a
total 7 7 100.0


line stmt bran cond sub pod time code
1             package App::bcrypt;
2 2     2   616098 use utf8;
  2         520  
  2         9  
3 2     2   59 use v5.30;
  2         6  
4              
5             our $VERSION = '1.002';
6              
7             =encoding utf8
8              
9             =head1 NAME
10              
11             App::bcrypt - A command-line tool to deal with bcrypt password hashing
12              
13             =head1 SYNOPSIS
14              
15             use App::bcrypt;
16              
17             =head1 DESCRIPTION
18              
19             This module is a placeholder to reserve the namespace, and you don't
20             need it for the program its distribution provides. The Perl module
21             distribution is there to install the prerequisites.
22              
23             =head1 TO DO
24              
25              
26             =head1 SEE ALSO
27              
28             =over 4
29              
30             =item * Crypt::Bcrypt (which this program uses)
31              
32             =item * Mojolicious::Plugin::Bcrypt
33              
34             =item * Mojolicious::Command::bcrypt
35              
36             =item * https://github.com/shoenig/bcrypt-tool, a Golang tool
37              
38             =back
39              
40             =head1 SOURCE AVAILABILITY
41              
42             This source is in Github:
43              
44             http://github.com/briandfoy/app-bcrypt
45              
46             =head1 AUTHOR
47              
48             brian d foy, C<< >>
49              
50             =head1 COPYRIGHT AND LICENSE
51              
52             Copyright © 2023, brian d foy, All Rights Reserved.
53              
54             You may redistribute this under the terms of the Artistic License 2.0.
55              
56             =cut
57              
58             1;