1Text::Password::PronounUcseearblCeo(n3t)ributed Perl DocTuemxetn:t:aPtaisosnword::Pronounceable(3)
2
3
4
6 Text::Password::Pronounceable - Generate pronounceable passwords
7
9 # Generate a pronounceable password that is between 6 and 10 characters.
10 Text::Password::Pronounceable->generate(6, 10);
11
12 # Ditto
13 my $pp = Text::Password::Pronounceable->new(6, 10);
14 $pp->generate;
15
17 This module generates pronuceable passwords, based the the English
18 digraphs by D Edwards.
19
20 METHODS
21 new($min, $max)
22 Construct a password factory with length limits of $min and $max.
23 If $max is omitted, it defaults to $min.
24
25 generate
26 Generate password.
27
29 This code derived from mpw.pl, a bit of code with a sordid history.
30
31 CPAN module by Chia-liang Kao 9/11/2006. Perl cleaned up a bit by
32 Jesse Vincent 1/14/2001. Converted to perl from C by Marc Horowitz,
33 1/20/2000. Converted to C from Multics PL/I by Bill Sommerfeld,
34 4/21/86. Original PL/I version provided by Jerry Saltzer.
35
37 Copyright 2006 by Best Practical Solutions, LLC.
38
39 This program is free software; you can redistribute it and/or modify it
40 under the same terms as Perl itself.
41
42 See <http://www.perl.com/perl/misc/Artistic.html>
43
44
45
46perl v5.12.0 2007-01-06 Text::Password::Pronounceable(3)