Hi all I have a question on if this is good practice or not. I am aware that simply double hashing a value can be bad for various reasons.
What I would like to do would be something like this, in php.
$val = hash_hmac('sha256', md5($password), $salt);
The reason for this is that we are authenticating with a trusted partner over a closed api. The passwords are stored as an MD5 hash in our DB. However, I don't want our partner to send this same value across the net.
This way I can compare the md5'd password inside our database to unique hash that our partner has sent.
What say ye?