I have an app that runs on php 5.3 which stores passwords using PHP's crypt() function. However the hashing type (SHA 512) used is not available by default on one of the servers I'm now using which runs PHP 5.2. I've seen that with mcrypt you get a lot more flexibility but it's also more complicated to use.
Can anyone tell me if it's possible to use php5's mcrypt function to get the same results as with crypt (using a SHA512 salt).
So if I input "test" with an SHA512 salt the encrypted data should be both the same when using crypt() as well as when using mcrypt().
If it's not possible, can anyone give me advice on what else to do? Unfortunately upgrading to php5.3 is not an option (it's a cloud server and I don't have the time to write the scripts for that).
Thanks