|
|
|
|
|
by Sammi
659 days ago
|
|
Yes good points. I have to argue the second part of this though > minimum 12 char + uppercase/lowercase + number The first minimum char counts rule is great. You increase the entropy exponentially with every added char. But the second part when you make rules about each individual char, then you are actually decreasing entropy. The space of possibilities actually shrinks every time a rule defines what a char must or mustn't be. An attacker now knows that certain things are guaranteed, and can tune their brute force algorithm to expect a big ascii letter, a large ascii letter, a latin number, an ascii special char. They now have a much smaller search space than before, when each char could be any utf8 char. You're basically leaking exploitable information about the password by having character rules. |
|