Acme-CPANModules-CryptingPassword

 view release on metacpan or  search on metacpan

META.json  view on Meta::CPAN

1
2
3
4
5
6
7
8
9
10
11
12
{
   "abstract" : "List of modules/tools to crypt/hash a password",
   "author" : [
      "perlancar <perlancar@cpan.org>"
   ],
   "dynamic_config" : 0,
   "generated_by" : "Dist::Zilla version 6.030, CPAN::Meta::Converter version 2.150010",
   "license" : [
      "perl_5"
   ],
   "meta-spec" : {

META.yml  view on Meta::CPAN

1
2
3
4
5
6
7
8
9
10
11
12
---
abstract: 'List of modules/tools to crypt/hash a password'
author:
  - 'perlancar <perlancar@cpan.org>'
build_requires:
  File::Spec: '0'
  IO::Handle: '0'
  IPC::Open3: '0'
  Test::More: '0'
configure_requires:
  ExtUtils::MakeMaker: '0'
dynamic_config: 0

Makefile.PL  view on Meta::CPAN

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# This file was automatically generated by Dist::Zilla::Plugin::MakeMaker v6.030.
use strict;
 
 
 
 
my %WriteMakefileArgs = (
  "ABSTRACT" => "List of modules/tools to crypt/hash a password",
  "AUTHOR" => "perlancar <perlancar\@cpan.org>",
  "CONFIGURE_REQUIRES" => {
    "ExtUtils::MakeMaker" => 0
  },
  "DISTNAME" => "Acme-CPANModules-CryptingPassword",
  "LICENSE" => "perl",
  "NAME" => "Acme::CPANModules::CryptingPassword",
  "PREREQ_PM" => {
    "alias::module" => 0,
    "strict" => 0

README  view on Meta::CPAN

1
2
3
4
5
6
7
8
9
10
11
12
13
NAME
    Acme::CPANModules::CryptingPassword - List of modules/tools to
    crypt/hash a password
 
VERSION
    This document describes version 0.002 of
    Acme::CPANModules::CryptingPassword (from Perl distribution
    Acme-CPANModules-CryptingPassword), released on 2023-07-21.
 
DESCRIPTION
    Bascally, the Perl's builtin crypt() is all you need. It supports all
    the hashing algorithms supported by your system's C library. You just
    need to supply the salt in the right format to select the hashing

README  view on Meta::CPAN

16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
    There are some wrappers and other utilities available on CPAN for added
    convenience.
 
ACME::CPANMODULES ENTRIES
    Crypt::Password::Util
        Author: PERLANCAR <https://metacpan.org/author/PERLANCAR>
 
        This module offers a one-argument crypt() which generates an
        appropriate ("reasonably secure") salt for you. There are also
        utility functions to check whether a string looks like a crypted
        password and to find out the type of the crypted password.
 
    App::bcrypt
        Author: BDFOY <https://metacpan.org/author/BDFOY>
 
        The distribution provides a "bcrypt" CLI utility to crypt every
        input line with bcrypt. It can also compare a password with its
        crypt.
 
        Script: bcrypt
 
FAQ
  What is an Acme::CPANModules::* module?
    An Acme::CPANModules::* module, like this module, contains just a list
    of module names that share a common characteristics. It is a way to
    categorize modules and document CPAN. See Acme::CPANModules for more
    details.

lib/Acme/CPANModules/CryptingPassword.pm  view on Meta::CPAN

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
 
use strict;
 
our $AUTHORITY = 'cpan:PERLANCAR'; # AUTHORITY
our $DATE = '2023-07-21'; # DATE
our $DIST = 'Acme-CPANModules-CryptingPassword'; # DIST
our $VERSION = '0.002'; # VERSION
 
our $LIST = {
    summary => 'List of modules/tools to crypt/hash a password',
    description => <<'_',
 
Bascally, the Perl's builtin `crypt()` is all you need. It supports all the
hashing algorithms supported by your system's C library. You just need to supply
the salt in the right format to select the hashing algorithm. See the function's
documentation for more details.
 
There are some wrappers and other utilities available on CPAN for added
convenience.
 
_
    entries => [
        {
            module => 'Crypt::Password::Util',
            description => <<'_',
 
This module offers a one-argument `crypt()` which generates an appropriate
("reasonably secure") salt for you. There are also utility functions to check
whether a string looks like a crypted password and to find out the type of the
crypted password.
 
_
        },
 
        {
            module => 'App::bcrypt',
            script => 'bcrypt',
            description => <<'_',
 
The distribution provides a `bcrypt` CLI utility to crypt every input line with
bcrypt. It can also compare a password with its crypt.
 
_
        },
    ],
};
 
1;
# ABSTRACT: List of modules/tools to crypt/hash a password
 
__END__
 
=pod
 
=encoding UTF-8
 
=head1 NAME
 
Acme::CPANModules::CryptingPassword - List of modules/tools to crypt/hash a password
 
=head1 VERSION
 
This document describes version 0.002 of Acme::CPANModules::CryptingPassword (from Perl distribution Acme-CPANModules-CryptingPassword), released on 2023-07-21.
 
=head1 DESCRIPTION
 
Bascally, the Perl's builtin C<crypt()> is all you need. It supports all the
hashing algorithms supported by your system's C library. You just need to supply
the salt in the right format to select the hashing algorithm. See the function's

lib/Acme/CPANModules/CryptingPassword.pm  view on Meta::CPAN

76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
=head1 ACME::CPANMODULES ENTRIES
 
=over
 
=item L<Crypt::Password::Util>
 
 
This module offers a one-argument C<crypt()> which generates an appropriate
("reasonably secure") salt for you. There are also utility functions to check
whether a string looks like a crypted password and to find out the type of the
crypted password.
 
 
=item L<App::bcrypt>
 
 
The distribution provides a C<bcrypt> CLI utility to crypt every input line with
bcrypt. It can also compare a password with its crypt.
 
 
Script: L<bcrypt>
 
=back
 
=head1 FAQ
 
=head2 What is an Acme::CPANModules::* module?

lib/Acme/CPANModules/HashingPassword.pm  view on Meta::CPAN

33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
=head1 ACME::CPANMODULES ENTRIES
 
=over
 
=item L<Crypt::Password::Util>
 
 
This module offers a one-argument C<crypt()> which generates an appropriate
("reasonably secure") salt for you. There are also utility functions to check
whether a string looks like a crypted password and to find out the type of the
crypted password.
 
 
=item L<App::bcrypt>
 
 
The distribution provides a C<bcrypt> CLI utility to crypt every input line with
bcrypt. It can also compare a password with its crypt.
 
 
Script: L<bcrypt>
 
=back
 
=head1 FAQ
 
=head2 What is an Acme::CPANModules::* module?



( run in 0.271 second using v1.01-cache-2.11-cpan-e9199f4ba4c )