Tagged Questions
78
votes
5answers
16k views
How do you use bcrypt for hashing passwords in PHP?
Every now and then I hear the advice "Use bcrypt for storing passwords in PHP, bcrypt rulllez!!!11"
OK, but what is this bcrypt? PHP doesn't offer any such functions, wikipedia babbles about a ...
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 ...
6
votes
3answers
218 views
What's the difference between bcrypt and hashing multiple times?
How is bcrypt stronger than, say,
def md5lots(password, salt, rounds):
if (rounds < 1)
return password
else
newpass = md5(password + salt)
return md5lots(newpass, ...
4
votes
2answers
85 views
How do I batch encrypt existing passwords in a MySQL db?
I am updating a web system for a client, and his 'accounts' table has over 20,000 users, each with a password field of straight text, meaning none of the passwords are encrypted. (I know, scary!) ...
4
votes
1answer
323 views
bcrypt — keeping up with Moore's law
I'm using bcrypt to store passwords in my database, using a work factor of 7, which takes about 0.02s to hash a single password on my reasonably modern laptop.
Coda Hale says that using bcrypt allows ...
3
votes
2answers
115 views
How does bcrypt keep up with Moore's law?
I have been seeing recommendations to use bcrypt to hash passwords because of its ability to keep up with Moore's Law.
Apparently the reason for this is because it would take much longer for an ...
3
votes
2answers
361 views
Iterate SHA512 to make it more secure?
I currently use SHA512 with per user random salt to hash user passwords and store them in a database. I thought this was pretty secure until I read this article about the use of cheap GPU's to brute ...
3
votes
2answers
1k views
How can I vendorize bcrypt in a PHP application (and should I)?
I am contributing to a relatively mature open-source PHP project. Recently, I discovered that it stores passwords as plain MD5 hashes, which is quite bothersome to me. I figured that if I was going ...
2
votes
1answer
92 views
How to migrate a password hash?
If I have passwords stored as a salted MD5 hash, but want to move them to use bcrypt, what's the best way to perform that transition? (given that I can't get the passwords back)
Should I bcrypt the ...
2
votes
2answers
570 views
BCrypt says long, similar passwords are equivalent - problem with me, the gem, or the field of cryptography?
I've been experimenting with BCrypt, and found the following. If it matters, I'm running ruby 1.9.2dev (2010-04-30 trunk 27557) [i686-linux]
require 'bcrypt' # bcrypt-ruby gem, version 2.1.2
...
1
vote
1answer
104 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
1answer
169 views
Decryptor for bcrypt
The title is pretty self explanatory. I'm not sure if this exists, as it would greatly compromise the security of bcrypt, but i'm using Devise in a rails app and forgot my password. However I can ...
1
vote
2answers
232 views
Is there any way to use bcrypt “hashing” in PHP 5.2?
I'm running a website with password hashing, but I think the current algorithm is insufficient. I tried to use PHP's crypt() with the blowfish option, but my PHP version is only 5.2 so CRYPT_BLOWFISH ...
1
vote
2answers
217 views
BCrypt generating different hashes given the same salt, string, and factor
Using one of the C# implementations of BCrypt to hash passwords and store them into a SQL database. However when I return to validate against the hash string BCrypt generates a different hash than the ...
1
vote
3answers
1k views
Password Encryption: PBKDF2 (using sha512 x 1000) vs Bcrypt
I've been reading about the Gawker incident and several articles have cropped up regarding only using bcrypt to hash passwords and I want to make sure my hashing mechanism is secure enough to avoid ...
0
votes
0answers
35 views
Using BCrypt without HTTPS Strategy - a moderately safe alternative?
I am working on a project (REST Client hitting a WCF REST Web Service with a custom WebServiceHost) that I cannot guarantee HTTPS use and am trying to make the password exchange from the client to the ...
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
...