-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Complete Basic Password Security #12
Open
buck-ross
wants to merge
9
commits into
master
Choose a base branch
from
buckley/auth
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Conversation
This file contains 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
Since they really shouldn't be dealing much with password management outside academia (unless they decide to pursue a career in cyber security), I decided to open by explaining why OAuth is generally better. Signed-off-by: Buckley Ross <[email protected]> Change-Id: If8c8d32891c7d37daa708266cf58d3697f6354ab
I introduced the concept of a hash, and attempted to lead into an explanation on why conventional hashing is not enough when it comes to password security. Signed-off-by: Buckley Ross <[email protected]> Change-Id: I65ef3614b7bc8216e2df7f399e3b48a2bb06664a
I introduce many common traits of secure password hashing algorithms, introduce the concept of PBKDF2, which is currently considered a very strong solution for hashing passwords, but I also include a word of caution that this may change in the future. Signed-off-by: Buckley Ross <[email protected]> Change-Id: I29c7a96165e4e9c64a307b47d40316132893780a
This is an important topic, which is certainly related to password security, although not necessarily the most important, so I refrained from covering it in too much detail. Signed-off-by: Buckley Ross <[email protected]> Change-Id: I799edd69069e87ff3ed6f1bb650c949b68bfa1aa
I intend to follow this up with a short section detailing essential password policies. Signed-off-by: Buckley Ross <[email protected]> Change-Id: I58f73ee1d1b3cdee501f36a57e9ae3aad52779e8
Not something we covered in 216, but extremely important nonetheless. Signed-off-by: Buckley Ross <[email protected]> Change-Id: Ic9c60c93ba54ab584573a893ff6fbafaa98618eb
Signed-off-by: Buckley Ross <[email protected]> Change-Id: Iaab6121dfd9e366d468528c0d7d24a3ffdcb3061
Signed-off-by: Buckley Ross <[email protected]> Change-Id: I6217480ab4918f5b1d7ba2be3e1a7c8140455f01
I also finished up the article with a nice lead into OAuth. Signed-off-by: Buckley Ross <[email protected]> Change-Id: Id9914143e71b5a64ed2b9f3c91e88276235e815f
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.
This went a little bit more in-depth than I was initially planning, but I'm very happy with the result.