Tagged Questions
39
votes
1answer
5k 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 that has been ...
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 ...
3
votes
1answer
508 views
How can I use bcrypt on appengine for java?
Are there any free implementations that will run on GAE/J?
1
vote
1answer
52 views
jBCrypt alternative? Threadsafe and with a bigger community
To hash passwords (one-way), it looks like bcrypt is the best.
I am about to start using jBCrypt, but I have a few worries:
No mailing list.
Very low activity overall.
Bug tracker has only ever had ...
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, ...
0
votes
1answer
59 views
Using bcrypt in a Glassfish 3.0 security realm
I'm currently in the process of changing the password handling in a web application from unsalted MD5 to bcrypt. It's a standard JSF application, running on Glassfish 3.0.1.
Using jBCrypt made ...
0
votes
1answer
54 views
jBCrypt fails to verify password
I'm working on encrypting passwords for my application since the password will be stored in the shared preferences
I found bcrypt and read a lot of good things about it but I can not get it to work
...
0
votes
3answers
321 views
No bcrypt implementation in iOS… can use other language, create static library?
There is no straight forward bCrypt ( http://codahale.com/how-to-safely-store-a-password/) implementation in Objective-C, and while there are C code that does accomplish this, it's specifically for ...