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
There are 72 chars but a char is picked using effectively random(0, 255) % 72. Therefore the first 40 (= 256 % 72) chars are picked with a probability of 4/7, while the remaining 32 chars are picked with a probability of 3/7.
Though this is likely not that dramatic.
The text was updated successfully, but these errors were encountered:
It appears
SAMLAuthenticator.generatePassword(int)
does not use the same probability for all chars:jira-saml/src/com/lastpass/jira/SAMLAuthenticator.java
Lines 112 to 122 in 52f4b62
There are 72 chars but a char is picked using effectively
random(0, 255) % 72
. Therefore the first 40 (= 256 % 72) chars are picked with a probability of 4/7, while the remaining 32 chars are picked with a probability of 3/7.Though this is likely not that dramatic.
The text was updated successfully, but these errors were encountered: