Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
4answers
2k 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 there is any reason not ...
2
votes
1answer
387 views

jBCrypt 0.3 C# Port (BCrypt.net)

After looking into a bug in the original jBCrypt v0.1 C# port: BCrypt.net (Related Question). I decided to compare the new jBCrypt code against the old C# port to look for discrepancies and potential ...
1
vote
1answer
105 views

Using jBCrypt to salt passwords in Android App causes a long hang

I am using the jBCrypt Library to hash user passwords when they register using my app. I am using the basic hash function, with a salt, like so: String pass = BCrypt.hashpw(rawPass, ...
1
vote
2answers
213 views

How to check two hashed passwords are the same?

I'm writing a program where I use MD5 to hash login details before I send them to a server, but there I have to compare it to a blowfish (jBCrypt) hashed password retrieved from a database. jBCrypt ...