Here are a few minor style points:
# characters in password my @chars_pool = character_pool(); # default password length my $pass_len = 14; ... # generate password my $password; for (1..$pass_len) { my $random_number = int rand @chars_pool; $password .= $chars_pool[$random_number]; }
In reply to Re: Please Review First Program: Random Password Generator
by toolic
in thread Please Review First Program: Random Password Generator
by hakkum
| For: | Use: | ||
| & | & | ||
| < | < | ||
| > | > | ||
| [ | [ | ||
| ] | ] |