in reply to Re: Re: ??Mnemonic Passwords??
in thread ??Mnemonic Passwords??
It returned the length of the total array, which is 8.(4 two letter sylables). And that isn't what i wanted to do. I wasn't sure how to fix this because $me = newbie.sub password { my( $s ) = @_; srand( $s ^ time ); my @c = split / */, "bcdfghjklmnpqrstvwxyz"; my @v = split / */, "aeiou"; return map { $c[ rand @c ], $v[ rand @v ] } 1..4; }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Re: Re: ??Mnemonic Passwords??
by jdporter (Paladin) on Jan 02, 2003 at 13:48 UTC |