New password hashing scheme: PBKDF2#2
Open
SCG82 wants to merge 2 commits into
Open
Conversation
… instead) - Breaking enhancement: Allow app to pass in own countries list - Breaking refactoring: `EmailDispatcher` and `AccountManager` are now classes; routes accepts config - Update: Use now required Mongodb APIs - Linting (ESLint): Apply eslint-config-ash-nazg - Refactoring: Destructuring; arrow functions for handlers; utilize succincter stylus features - npm: Update deps and devDeps; put deps, devDeps together - npm: Remove redundant `private: false`
4a4bab4 to
dbfe0ec
Compare
|
I like this ! @brettz9 |
Owner
|
Oh, sorry, I hadn't noticed this PR for some reason. Yes, indeed, intend to include. Let me finish up my current branch work. |
|
Cool. |
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.
Fully backwards compatible. New user passwords will be hashed using PBKDF2 (10000 iterations, sha256, 16 byte salt) and stored in MongoDB (hash length 32) along with a pass_ver field (pass_ver = 1). Users with no pass_ver field (or pass_ver: 0) will be validated using MD5.