I have read that when hashing a password, many programmers recommend using the BCrypt algorithm.

I am programming in C# and is wondering if anyone knows of a good implementation for BCrypt? I found this page, but I don't really know if it is bogus or not.

What should I be aware of when choosing a password encryption scheme? Is BCrypt a 'good' implementation?

link|improve this question

I'm also 'trusting' that library at the moment - but other examples of people using it would be good! – UpTheCreek Oct 1 '09 at 8:44
feedback

3 Answers

up vote 22 down vote accepted

First, some terms that are important:

Hashing - The act of taking a string and producing a sequence of characters that cannot be reverted to the original string.

Symmetric Encryption - (Usually just referred to as 'encryption) - The act of taking a string and producing a sequence of characters that can be reverted to the original string.

Rainbow Table - a lookup table that contains all variations of characters hashed in a specific hashing algorithm.

Salt - a known random string appended to the original string before it is hashed, providing a unique sequence of characters that is only known if you 1) know the hash, and 2) create a rainbow table for all possible strings with that salt for that hashing algorithm.

If you are going to implement your own password security, then you need to do several things:

  1. Use a relatively secure hash algorithm.
  2. Salt each password before it's hashed.
  3. Use a unique and long salt for each password, and store the salt with the password.
  4. Require strong passwords.

Unfortunately, even if you do all this, a determined hacker still could potentially figure out the passwords, it would just take him a really long time. That's your chief enemy: Time.

The bcrypt algorithm works because it five orders of magnitude longer to hash a password than MD5; (and still much longer than AES or SHA-512). It forces the hacker to spend a lot more time to create a rainbow table to lookup your passwords, making it far less likely that your passwords will be in jeopardy of being hacked.

Even with all this, you've got to be using good security practices. If they can successfully use XSS or SQL Injection on your site, good password security doesn't matter.

Other resources:

  1. Jeff Atwood: .NET Encryption Simplified (great for an overview of hashing)
  2. Jeff Atwood: I just logged in as you
  3. Jeff Atwood: You're probably storing passwords incorrectly

Note: Please recommend other good resources. I've must have read a dozen articles by dozens of authors, but few write as plainly on the subject as Jeff does. Please edit in articles as you find them.

link|improve this answer
maybe add to your salt paragraph that a salt must be randomly choosen – Jacco Apr 8 '11 at 14:55
1  
@Jacco Good call, added. Although that's not that important. You could simply use the timestamp of the login for the salt. The difference it makes is that the attacker then needs to recompute the rainbow table for each salt. That's what makes it difficult, not that it's randomly chosen. Making it random would add another layer of obsfucation, but that's useless once the attacker is able to see your database (which is the problem that causes all of our heartache in the first place). – George Stocker Jun 3 '11 at 13:42
3  
Not really, the salt does not have to be secret, the just unique for each instance. Since unique (as in world-wide) is not possible, random is the next best thing. Also, timestamp is not a good salt as there is not enough entropy. – Jacco Jun 5 '11 at 18:56
1  
I'd take issue with your statement "If they can successfully use XSS or SQL injection, good password security doesn't matter." On the contrary, if they can successfully XSS or SQL inject your site, good password security is even more important. The key here is "defence in depth" -- you should tighten security as far as is practical at every layer of your application. – jammycakes Aug 9 '11 at 12:56
1  
"The bcrypt algorithm works because it takes *300 milliseconds* to hash a password; which is about *300 times* longer than it takes for AES or SHA-512." It takes 1 ms to compute the SHA-512 of a password? That cannot be right. – curiousguy Oct 1 '11 at 1:26
show 2 more comments
feedback

I would not recommend using BCrypt in .NET, I would recommend using PBKDF2 as it is built into the .NET framework.

StackId previously used BCrypt and moved to PBKDF2, you can see this from Kevin Montrose's remarks on SO blog here: http://blog.stackoverflow.com/2011/05/stack-exchange-is-an-openid-provider/#comment-59112

If StackOverflow used it, then dropped it. I certainly would not use it.

Edit: The meaning of verified in cryptographic terms seems to not be readily understood, a verified implementation means it's been cryptographically proven to be implemented without error. The cost of this can easily reach $20,000 or higher. I recall this when I was doing research on OpenSSL and read where they stated they haven't completed the entire verification process but if you need fully verified that they can point you down the right path for it and mentioned costs associated. Certain government requirements include mandates for verified encryption algorithms.

The bcrypt implementations in .NET have not been verified. Using an unverified encryption implementation you can't be absolutely certain that there is not either intentional malicious faults in it such as allowing a backdoor into what is encrypted or unintentional implementation faults that result in cryptographically insecure data.

link|improve this answer
2  
To quote the linked comment: "[we] moved to PBKDF2 as it is built into the .NET framework, whereas BCrypt would require us to verify an implementation". Note that the comment doesn't say the algorithm is better, just that SE Dev Team considers the built-in PBKDF2 implementation more trusted than an external library (which is, ultimately, a judgement call). – Piskvor Aug 9 '11 at 9:07
@Piskvor I updated my answer. This isn't about what the SO team considers secure but a judgement call between inherently proven secure or hopefully secure. The latter when it comes to cryptography is unacceptable. – Chris Marisic Aug 9 '11 at 12:42
feedback

I wrote an article describing how to use BCrypt in a .NET application.

http://lostinthegc.wordpress.com/2011/03/22/using-bcrypt-in-a-net-application-why-its-better-than-sha-or-md5/

BCrypt solves that problem, by using a work factor. Meaning, you decide how long it’s going to take to hash data. So no matter how faster computers get, you can tweak up that factor and still hash your passwords at the speed you wish.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.