NAME

App::Genpass - Quickly create secure passwords

VERSION

Version 0.04

SYNOPSIS

use App::Genpass;

my $genpass = App::Genpass->new();
print $genpass->generate, "\n";

$genpass = App::Genpass->new( readable => 0, length => 20 );
print "$_\n" for $genpass->generate(10);

DESCRIPTION

If you've ever needed to create 10 (or even 10,000) passwords on the fly with varying preferences (lowercase, uppercase, no confusing characters, special characters, minimum length, etc.), you know it can become a pretty pesky task.

This script makes it possible to create flexible and secure passwords, quickly and easily.

use App::Genpass;
my $genpass = App::Genpass->new();

my $single_password    = $genpass->generate(1);  # returns scalar
my @single_password    = $genpass->generate(1);  # returns array
my @multiple_passwords = $genpass->generate(10); # returns array again
my $multiple_passwords = $genpass->generate(10); # returns arrayref

SUBROUTINES/METHODS

new

Creates a new instance. It gets a lot of options.

generate

This method generates the password or passwords.

AUTHOR

Sawyer X, <xsawyerx at cpan.org>

BUGS AND LIMITATIONS

Please report any bugs or feature requests to bug-app-genpass at rt.cpan.org, or through the web interface at http://rt.cpan.org/NoAuth/ReportBug.html?Queue=App-Genpass. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.

SUPPORT

You can find documentation for this module with the perldoc command.

perldoc App::Genpass

You can also look for information at:

LICENSE AND COPYRIGHT

Copyright 2009 Sawyer X.

This program is free software; you can redistribute it and/or modify it under the terms of either: the GNU General Public License as published by the Free Software Foundation; or the Artistic License.

See http://dev.perl.org/licenses/ for more information.