I am running a website with password hashing, but I think the current algorithm is insufficient. I tried using PHP crypt () with the blowfish parameter, but my PHP version is only 5.2, so CRYPT_BLOWFISH is not included.
I have seen third-party libraries that can be encrypted through Blowfish, but none of them do full Bcrypt hashing. Is there any PHP library that you know that has bcrypt hashing without using the crypt () function? Or, even better, any way to feed a third blowfish encryption algorithm into a third-party bcrypt hash algorithm?
Just to clarify, I canβt install a newer version of PHP because I am on a shared hosting.
I would really appreciate any suggestions! Thanks!
source share