You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The password will gradually increase in strength until it is impenetrable … until you type that last "n" in the passphrase. Then it drops to weak.
The problem is with the unique function. For very long passwords, the uniqueness drops below the threshold. Our solution was to only run that particular check in a conditional. Essentially, we said if there are more than 12 unique characters, returns false. But, if there are 12 or fewer unique characters, go ahead and make sure there is adequate uniqueness (running the check that's currently in the code).
The text was updated successfully, but these errors were encountered:
If I try to use this tool and set a password to …
The password will gradually increase in strength until it is impenetrable … until you type that last "n" in the passphrase. Then it drops to weak.
The problem is with the unique function. For very long passwords, the uniqueness drops below the threshold. Our solution was to only run that particular check in a conditional. Essentially, we said if there are more than 12 unique characters, returns false. But, if there are 12 or fewer unique characters, go ahead and make sure there is adequate uniqueness (running the check that's currently in the code).
The text was updated successfully, but these errors were encountered: