summaryrefslogtreecommitdiff
path: root/_posts
diff options
context:
space:
mode:
authorBen Burwell <ben@benburwell.com>2015-01-18 16:06:48 -0500
committerBen Burwell <ben@benburwell.com>2015-01-18 16:06:48 -0500
commit331c9730130708d39911c54d1de73c3cff09c8da (patch)
tree18f46a7611dbdd37c22216254396ab1fd0365225 /_posts
parentfdc61639767973bd92cc165d746115f59359ad9a (diff)
Updated accounts/passwords article to include bcrypt
Diffstat (limited to '_posts')
-rw-r--r--_posts/2015-01-16-your-website-is-not-special-dont-make-visitors-make-accounts.markdown3
1 files changed, 1 insertions, 2 deletions
diff --git a/_posts/2015-01-16-your-website-is-not-special-dont-make-visitors-make-accounts.markdown b/_posts/2015-01-16-your-website-is-not-special-dont-make-visitors-make-accounts.markdown
index 31ac7b7..fddac2c 100644
--- a/_posts/2015-01-16-your-website-is-not-special-dont-make-visitors-make-accounts.markdown
+++ b/_posts/2015-01-16-your-website-is-not-special-dont-make-visitors-make-accounts.markdown
@@ -22,8 +22,7 @@ And if you do offer accounts, here are a couple of rules to follow to ensure a g
Of course, there are technical details that you need to be watching out for that are outside the scope of this post. I'll leave it to you to make sure your implementation is secure and robust, but I'll leave you with a few general tips:
* Don't invent your own crypto. This applies to protocols, hashing, encryption, everything.
-* Use salt.
-* Use a slow, secure hash function like SHA-256. Don't use MD5!
+* Use [bcrypt](http://codahale.com/how-to-safely-store-a-password/). Don't use MD5!
* Using unsecured HTTP (no SSL/TLS) is inexcusable.
* Don't invent your own crypto.
* *Don't invent your own crypto.*