Subject: | Could you make other classes increase in number? |
The documentation clearly states "minlower is increased if necessary", but I'd like other "min..." to increase to.
At the moment I have
mkpasswd(
-length => 12,
-minnum => 1,
-minlower => 1,
-minupper => 1,
-minspecial => 1,
-distribute => 1,
);
and was a bit surprised (because I didn't see before) that I always have 9 lower case characters and just 1 of each other class. I think it would be better to have other classes increase in number too.