vote up 1 vote down star

I have found a lot of posts on hashing at the client but none that quite answer my question.

I would like to hash user passwords at the client so that I don't have to send a plain text password across the web but I have a question as to how i might do so successfully when using a salt.

The normal procedure of validating a password is.. 1) user enters username and password 2) recover salt based on username 3) hash password and salt 4) check hash against db

If this all takes place on the server, this is no big deal but it becomes complicated if you are on the client. 2) would have to be a call back to the server while maintaining the password somewhere (without posting it) so.. ajax? Is that the best way or am i missing something?

Thanks in advance!

flag

3 Answers

vote up 4 vote down

Sending a hashed password over an unencrypted connection is no better than sending the unhashed plain text password. A bad guy can intercept the hashed password and replay that as the credential later.

What you want is to send the real password over SSL.

link|flag
2  
Regarding hashed password, that's not exactly true. The usual way to work it around it using a 'nonce', like HTTP Digest Auth does for example. en.wikipedia.org/wiki/Cryptographic_nonce – Lukáš Lalinský Oct 31 at 21:08
vote up 1 vote down

As a more secure alternative to sending unencrypted hashes or passwords across an unsecured channel (but still less secure than SSL), you might look at Digest Authentification.

As was stated above, sending the hash across an insecure channel would still allow someone else to log on as the user.

link|flag
vote up 0 vote down

Thanks guys, I don't know what I was thinking. Ill check out the Digest.

link|flag
1  
@Nate: welcome to SO! You should do three things: 1. delete this answer because it's a comment; 2. because it's a comment, post it as a comment under the best answer; 3. because you've found the best answer, you should accept it by clicking the checkmark to its left – Michael Haren Nov 1 at 19:43
Unfortunately, I actually asked the question anonymously before I made a user account. If i can somehow 'claim' this this question, please let me know. Thanks! – Nate Nov 7 at 23:30

Your Answer

Get an OpenID
or

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