Client Side Javascript for ASP.net 2.0 Login control

G

Guest

Hello,
I want to implement client side MD5 hash for Login Control using
Javascript. how do I implement this.

Thank you
 
G

Guest

You could do this with a javascript MD5 algorithm, I am sure I've seen
javascript code to do this. However, normally the MD5 (or another type of)
hash is performed server side - usually in your Membership Provider class --
for the simple reason that the hash needs to be compared with the hash of /
the stored password from a database table. Why do you need to do this at the
client side?
Peter
 
G

Guest

Hello,
I have to implement this at the Client side, so that as soon as the
Login Button is pressed, the password is converted to Salted MD5 hash and it
travels from client to server in Salted MD5 hash form and not the clear text
which is now passing on.
Thank you
 
G

Guest

Hello,
I want to implement client side javascript so that password is
immediately converted to salted MD5 hash after pressing the Login button and
will pass from client to server in encrypted form instead of clear text form
which is now passing on.

Thank you
 
L

Lukas Kurka

and? where is the point for this? When you send MD5, someone who is
listening can catch MD5 as well as clear password.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top