File: README

package info (click to toggle)
libtext-password-pronounceable-perl 0.28-1
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 112 kB
  • ctags: 73
  • sloc: perl: 1,007; makefile: 2
file content (31 lines) | stat: -rw-r--r-- 1,012 bytes parent folder | download
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
NAME
    Text::Password::Pronounceable - Generate pronounceable passwords

SYNOPSIS
      # Generate a pronounceable password that is between 6 and 10 characters.
      Text::Password::Pronounceable->generate(6, 10);

      # Ditto
      my $pp = Text::Password::Pronounceable->new(6, 10);
      $pp->generate;

DESCRIPTION
    This module generates pronuceable passwords, based the the English
    digraphs by D Edwards.

HISTORY
    This code derived from mpw.pl, a bit of code with a sordid history.

    CPAN module by Chia-liang Kao 9/11/2006. Perl cleaned up a bit by Jesse
    Vincent 1/14/2001. Converted to perl from C by Marc Horowitz, 1/20/2000.
    Converted to C from Multics PL/I by Bill Sommerfeld, 4/21/86. Original
    PL/I version provided by Jerry Saltzer.

LICENSE
    Copyright 2006 by Best Practical Solutions, LLC.

    This program is free software; you can redistribute it and/or modify it
    under the same terms as Perl itself.

    See <http://www.perl.com/perl/misc/Artistic.html>