in reply to RE: Quicky password sub
in thread Quicky password sub
{ my @password_chars = ( 0 .. 9, 'A' .. 'Z', 'a' .. 'z' ); my $num_char = @password_chars; sub Pass { my $password = ''; $password .= $password_chars[rand($num_char)] for (1 .. 8); return $password; } }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
RE: RE: RE: Quicky password sub
by turnstep (Parson) on May 02, 2000 at 22:42 UTC | |
|
RE: RE: RE: Quicky password sub
by buzzcutbuddha (Chaplain) on May 02, 2000 at 21:31 UTC |