Increase default dictionary size, use more efficient dictionary algorithm#3
Merged
bdmac merged 1 commit intobdmac:masterfrom Jan 17, 2014
Merged
Increase default dictionary size, use more efficient dictionary algorithm#3bdmac merged 1 commit intobdmac:masterfrom
bdmac merged 1 commit intobdmac:masterfrom
Conversation
Owner
|
Hi Peter, Thanks for the PR! I'm a bit worried that some of the changes you made seem to have altered the calculation of the entropy of a given password. Can you explain if this impact is truly significant or not? |
Contributor
Author
|
Hi Brian -- I believe that the entropy changes are due to two factors:
I believe that accounts for the entropy changes in the tests. |
bdmac
added a commit
that referenced
this pull request
Jan 17, 2014
Increase default dictionary size, use more efficient dictionary algorithm
Owner
|
Thanks! |
jacksenechal
added a commit
to jacksenechal/strong_password
that referenced
this pull request
Nov 8, 2018
Based on bdmac#3, the dictionary is now 10k words long instead of 500. (I was glad to see that! I was worried I was going to have to make that PR :-) Also worth asking: Are these Todo items still relevant?
bdmac
pushed a commit
that referenced
this pull request
Jul 8, 2019
Based on #3, the dictionary is now 10k words long instead of 500. (I was glad to see that! I was worried I was going to have to make that PR :-) Also worth asking: Are these Todo items still relevant?
davegudge
added a commit
to davegudge/strong_password
that referenced
this pull request
Jan 19, 2023
Update the metric for the 'most common passwords'. Related to: bdmac#3
Open
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
I increased the size of the default dictionary to the top 10,000 passwords. I swapped in a more efficient dictionary comparison algorithm (based on regexps). A few miscellaneous cleanups.