Acme-CPANModules-CryptingPassword
view release on metacpan or search on metacpan
123456789101112{
"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"
: {
123456789101112---
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
1234567891011121314151617181920# This file was automatically generated by Dist::Zilla::Plugin::MakeMaker v6.030.
use
strict;
use
warnings;
use
ExtUtils::MakeMaker;
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
12345678910111213NAME
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
161718192021222324252627282930313233343536373839404142
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
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970package
Acme::CPANModules::CryptingPassword;
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
767778798081828384858687888990919293949596979899100101102103104=head1 ACME::CPANMODULES ENTRIES
=over
=item L<Crypt::Password::Util>
Author: L<PERLANCAR|https://metacpan.org/author/PERLANCAR>
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>
Author: L<BDFOY|https://metacpan.org/author/BDFOY>
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
3334353637383940414243444546474849505152535455565758596061=head1 ACME::CPANMODULES ENTRIES
=over
=item L<Crypt::Password::Util>
Author: L<PERLANCAR|https://metacpan.org/author/PERLANCAR>
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>
Author: L<BDFOY|https://metacpan.org/author/BDFOY>
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 )