Is there a secure password hashing library (e.g. phpass) or hashing method that I can easily use in both PHP and Java?
Is there a secure password hashing library (e.g. phpass) or hashing method that I
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
If you want do the easy thing, you can use sha-N with salt. (N being 1, 256 or 512)
Jeff Atwood did a nice blog post on that recently, saying that
bcryptandPBKDF2are the best options.In PHP you can use
bcrypt(and in Java too)Related topics:
Resouces: