I'm interested in using Taylor Hornby(aka Defuse)'s PHP password-hashing method (the PHP compatible version), which I found here: https://github.com/defuse/password-hashing
I'm asking this because different hosting companies provide different PHP versions and different Linux versions, that's why I'm afraid to implement this technique which might work just fine in my development server, but fails to work properly in production server.
It does not work in PHP 4, as it requires either hash_pbkdf2
(available in PHP 5.5+) or hash_hmac
(available in PHP 5.1+ or PECL).
It will work the same in 64-bit, as well as 32-bit.