0
votes
1answer
38 views
Installing bcrypt-ruby gem on Windows
I'm trying to install bcrypt-ruby on Windows Vista.
So far, I have been able to install nmake.exe from a MS knowledge base article and cl.exe from installing Visual Studio 2008 Ex …
2
votes
1answer
61 views
What’s the advantage of bcrypt over scrypt?
I'm looking at ways to securely store passwords. Some people claim that scrypt is "better" than bcrypt, and so far I've seen nobody who claims vice versa or that scrypt is insecure …
3
votes
1answer
117 views
.net impl of bcrypt
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 go …
1
vote
3answers
353 views
What to use for password hashing? Any reason not to use jBCrypt?
I'm planning to use jBCrypt for password hashing in a new web application, as it is supposed to be the best from what I've read. As I haven't used it before I'm looking into if the …
3
votes
2answers
283 views
C#: BCrypt implementation
I have read that when hashing a password, many recommend using the BCrypt algorithm. I am programming in C# and is wondering if anyone know of a good and correct implementation. Fo …
6
votes
1answer
317 views
Do I need to store the salt with bcrypt?
bCrypt's javadoc has this code for how to encrypt a password:
String pw_hash = BCrypt.hashpw(plain_password, BCrypt.gensalt());
To check whether a plaintext password matches one …
