I am using jQuery Ajax for user login. Right now, I'm using JS to grab the values from the username and password text fields and send them to an aspx page that validates credentials. It then returns JSON, letting the user know if they are logged in or not. Everything works fine, but I noticed when using Firebug that the password is sent in plain text.
What is the best way to encrypt a password? (BTW, I'm not on an HTTPS server)
source
share