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 ...
1
vote
1answer
107 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, ...