genpsw - genpsw number generator.
genpsw ([minl:integer, maxl:integer, seed:integer, init:bool, mode:"small"|"numeric"|"capital"|"special"|"restricted");
This function generates a random password of len min(10) to max(10). The mode can be specified more then once.
For a same seed, the sequence is always the same.
Note: In the followings examples, the _ between the { should be removed to make it work.
res={_{genpsw(mode:"small",seed:2,init:true); }}. return res=jsqxspshii. res={_{genpsw(mode:"capital",minl:5,maxl:6,seed:2,init:true); }}. return res=JSQXS. res={_{genpsw(mode:"number",minl:25,maxl:26,seed:2,init:true); }}. return This mode is invalid res={_{genpsw(mode:"numeric",minl:25,maxl:26,seed:2,init:true); }}. return res=0754539433273662550447783. res={_{genpsw(mode:"small",mode:"numeric",mode:"capital",minl:15,maxl:16,seed:2,init:true); }}. return res=j9v59fKNyeLkMNo.
Written by Pierre Laplante and Caroline Laplante, <laplante@sednove.com>
Cras sit amet nibh libero, in gravida nulla. Nulla vel metus scelerisque ante sollicitudin commodo. Cras purus odio, vestibulum in vulputate at, tempus viverra turpis.
1.0 2014-09-09 21:24:14 laplante@sednove.com