Tagged Questions
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
108 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, ...