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?

link|improve this question
feedback

1 Answer

First of all, is this a user password (ie, you are authenticating on-behalf-of a user), or a shared secret between your two servers?

If it's a user password, stop. You are saving passwords in plaintext (or as an unsalted md5). Either way is bad. Save passwords as a salted hash and use OAuth or something to authenticate instead.

If it's a shared secret between two servers (not representing a user), you can still use oauth or something, but if you just want something simple, you should authenticate like this:

$val = hash_hmac('sha256', $nonce, $secret);

$nonce is a one-time-value chosen by the server randomly to prevent replay attacks.

Keep in mind that if you don't have a nonce, then whatever value you send across is your shared secret. It doesn't matter if you derive it from a hmac of a md5 or whatever; if it ends up being the same each time, it is equivalent to a password sent across the communications channel. And remember to secure the communications channel from MITMs as well!

link|improve this answer
Thanks for the input. This is on behalf of a user. To clarify we are not storing the passwords in the DB in plaintext, they are however stored as an unsalted MD5. Not to absolve myself, but it was like this when I got here. The partner is already authenticating their credentials to our API using a nonce, http digest to be exact. The secondary authentication is on behalf of an end user. – HarryYee Jul 12 '11 at 22:54
Well, it's still a shared secret then, so you should be using a hmac with a nonce as in my example... But switch to something like oauth and rehash your password when you get a chance :) – bdonlan Jul 13 '11 at 3:09
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.