vote up 3 vote down star

Does anyone know of a good impl of bcrypt, I know this question has been asked before but it got very little response. Im a bit unsure of just picking an impl that turns up in google and am thinking that I may be better off using sha256 impl in the System.Security.Cryptography namespace, at least then I know it's supported! What are you thoughts?

flag

69% accept rate

1 Answer

vote up 3 vote down check

It sounds like you are looking for BCrypt.net:

BCrypt.net is an implementation of OpenBSD's Blowfish-based password hashing code, described in "A Future-Adaptable Password Scheme" by Niels Provos and David Mazières. It is a direct port of jBCrypt by Damien Miller, and is thus released under the same BSD-style license. The code is fully managed and should work with any little-endian CLI implementation -- it has been tested with Microsoft .NET and Mono.

link|flag
Yes, that was the one I found with Google also. Do you use it, or do you know if it's widely used? – Gareth May 17 at 6:54
Haven't used BCrypt, but judging from references from other internet sites, it looks like this implementation is really good. However, unless you have a pressing need to use BCrypt specifically, why not just go with the built-in SHA256 or SHA512? – amdfan May 17 at 19:35
1  
The reason I thought about using BCrypt was because of this article matasano.com/log/958/… and it claimed BCrypt is the way to go. – Gareth May 19 at 9:11
Roger that. That article is the same reason I gooogled bcrypt for .NET and came to this question on stackoverflow. Specifically, from the article, you shouldn't use SHA256 or SHA512 because those are both optimized for SPEED, and a password generating hash should be SLOW, or TAKE A LONG TIME. – Noffie Jun 13 at 16:02

Your Answer

Get an OpenID
or

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