phpass is a portable public domain password hashing framework for use in PHP applications. It is meant to work with PHP 3 and above. The preferred (most secure) hashing method supported by phpass is the OpenBSD-style Blowfish-based bcrypt, known in PHP as CRYPT_BLOWFISH, with a fallback to ...
4
votes
3answers
252 views
What is the benefit of a “random” salt over a “unique” salt?
I am currently writing a program and part of it involves securely creating password hashes to store in a database and I came across the phpass framework, which seems to be highly recommended. In ...
7
votes
4answers
153 views
Are there any security pitfalls with using existing MD5 hashes with PHPass?
Before I knew better, I implemented a login system with md5 as the hashing algorithm. Now that I do know better, I'd like to move to using PHPass. My problem is that the system is already in ...
2
votes
3answers
444 views
phpass the best solution for secure password-storing?
I'm creating a service which handles a lot of personal data, and therefor it's not appropriate to let the passwords simply fly out. I've been diggin' around to find any possible solutions, and one ...
7
votes
1answer
1k views
Portable (PHPass) password hashes. Should I use them?
I'm installing a user registration script (Tank Auth) for my website.
In the installation guide its says,
WARNING: By default the library generates strong system-specific
password hashes that ...
1
vote
2answers
121 views
PHP and recovering password process
So Im planning to use phpass for hashing passwords for my authentication system in php. My question is, what is the best practice when someone requests to recover their password because they forgot ...
1
vote
1answer
624 views
Generating PHPass for Wordpress Passwords
I am working on an application wnere I need to check for authenticity of user according to his wordpress userid/password. Trouble is, I don't know how to check whether a password is correct or not.
I ...
0
votes
3answers
116 views
phpass returns different results
I just put my project from localhost to my host and using the same (phpass) function I receive different results and the length of the returned string is also different. (and everything works on ...
0
votes
2answers
170 views
Phpass - danger of not being able to access all passwords?
Sorry, this may be dumb, but there is something I don't understand about Phpass. If I can create a secure hashed password like this:
$pwdHasher = new PasswordHash(8, FALSE);
$hash = ...