in reply to Re: Re: Crypt::GeneratePassword with no special characters
in thread Crypt::GeneratePassword with no special characters
If $set is given, it must be an array ref of characters to use
so this argument contains the list of chars to use, as opposed to not using. Perhaps you want:
which should create a password between 5 and 8 chars in length, containing only lowercase chars from 'a' to 'z'.$Password=chars(5,8,\('a'..'z'));
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Re: Re: Crypt::GeneratePassword with no special characters
by Mark2117 (Initiate) on Aug 21, 2003 at 18:34 UTC |