Acme-CPANModules-RandomPassword
view release on metacpan or search on metacpan
lib/Acme/CPANModules/GeneratingRandomPassword.pm view on Meta::CPAN
## no critic: TestingAndDebugging::RequireUseStrict
package Acme::CPANModules::GeneratingRandomPassword;
use alias::module 'Acme::CPANModules::RandomPassword';
1;
# ABSTRACT: Alias for Acme::CPANModules::RandomPassword
__END__
=pod
=encoding UTF-8
=head1 NAME
Acme::CPANModules::GeneratingRandomPassword - Alias for Acme::CPANModules::RandomPassword
=head1 VERSION
This document describes version 0.002 of Acme::CPANModules::GeneratingRandomPassword (from Perl distribution Acme-CPANModules-RandomPassword), released on 2023-04-10.
=head1 DESCRIPTION
L<App::genpw> can generate passwords with patterns and wordlists. It loads
secure random number generator if available. By default it generates 12-20
character-long passwords comprising of ASCII letters and digits. There are
several variants which are basically wrappers for convenience:
L<App::genpw::base64>, L<App::genpw::base58>, L<App::genpw::base56>,
L<App::genpw::wordlist> (use words from wordlists), L<App::genpw::ind> (use
Indonesian words). The module will use C<rand()> from C<Data::Entropy::Algorithms>
if the module is available, for stronger random number generation.
L<Crypt::GeneratePassword> creates secure random pronounceable passwords. It
provides function C<word()> which generates a sequence of letters with vocals in
between consonants so the word is still pronounceable, even though it's a
nonsense word. It also provides C<chars()> which produces a sequence of random
letters, digits, and some symbols. It still uses C<rand()> by default which is
not cryptographically secure.
L<Crypt::RandPasswd> implements the old FIPS 181 (1993, withdrawn 2015)
standard to generate pronounceable password, which is no longer recommended.
L<Crypt::PassGen>, yet another module to create random words that look like
real words. It does not use a secure random number generator by default.
L<Data::SimplePassword>
L<String::MkPasswd>
L<Data::Random::String> and L<Data::Random>.
L<Text::Password::Pronounceable::RandomCase>
L<String::Random>
L<String::Urandom>
L<Crypt::XkcdPassword>, a password generator module inspired by
L<http://xkcd.com/936/>.
L<CtrlO::Crypt::XkcdPassword>, another password generator module inspired by
L<http://xkcd.com/936/>.
L<App::GenPass>
L<Crypt::PW44>
L<Crypt::YAPassGen>
L<Session::Token>
L<Text::Password::Pronounceable>
For other types of random data, see other lists mentioned in the See Also
section.
Keywords: random secure password
=head1 ACME::CPANMODULES ENTRIES
=over
=item L<App::genpw>
Author: L<PERLANCAR|https://metacpan.org/author/PERLANCAR>
=item L<App::genpw::base64>
Author: L<PERLANCAR|https://metacpan.org/author/PERLANCAR>
=item L<App::genpw::base58>
Author: L<PERLANCAR|https://metacpan.org/author/PERLANCAR>
=item L<App::genpw::base56>
Author: L<PERLANCAR|https://metacpan.org/author/PERLANCAR>
=item L<App::genpw::wordlist>
Author: L<PERLANCAR|https://metacpan.org/author/PERLANCAR>
=item L<App::genpw::ind>
Author: L<PERLANCAR|https://metacpan.org/author/PERLANCAR>
=item L<Crypt::GeneratePassword>
Author: L<NEILB|https://metacpan.org/author/NEILB>
=item L<Crypt::RandPasswd>
Author: L<JANITOR|https://metacpan.org/author/JANITOR>
=item L<Crypt::PassGen>
Author: L<TJENNESS|https://metacpan.org/author/TJENNESS>
=item L<Data::SimplePassword>
Author: L<RYOCHIN|https://metacpan.org/author/RYOCHIN>
=item L<String::MkPasswd>
Author: L<CGRAU|https://metacpan.org/author/CGRAU>
=item L<Data::Random::String>
Author: L<MAKIS|https://metacpan.org/author/MAKIS>
=item L<Data::Random>
Author: L<BAREFOOT|https://metacpan.org/author/BAREFOOT>
=item L<Text::Password::Pronounceable::RandomCase>
Author: L<MDOM|https://metacpan.org/author/MDOM>
( run in 1.287 second using v1.01-cache-2.11-cpan-39bf76dae61 )