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 ...
16
votes
2answers
2k views
Why does BCrypt.net GenerateSalt(31) return straight away?
I stumbled across BCrypt.net after reading Jeff Atwood's post about storing passwords which led me to Thomas Ptacek's recommendation to use BCrypt to store passwords. Which finally led me to this C# ...
3
votes
1answer
496 views
Are bcrypt salts accessible separately?
When using has_secure_password in Rails 3.1, bcrypt randomly generates a salt for each user's password. Based on this response, I understand the salt is stored as part of the password hash. Is there a ...
1
vote
3answers
210 views
Random salt + hashed pass or a random salt + crypt()'ed pass?
I'm trying to make a more or less secure login system for my site, I haven't had much time with securing things so I'm learning as I go along. Wanted to hear some views on which of the following is ...
1
vote
2answers
268 views
What is the safest way to store a password using Code Igniter? (solved)
I am using Code Igniter for my current project.
As of now, I am using MD5 for password hashing, but I have read at a lot of places, that it is not a good practice to do so.
What should I go with?
...