I’m developing a web project using JavaScript with AJAX requests to WebServices and I’m interested in encrypting the information.
How secure is to encrypt from the client side? Remember that I’m not using a server side language.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
There was a huge discussion on hackernews about this last week, inspired by this article on matasano.com.
Basically, secure javascript does not exist. The only way is to have everything be over HTTPS, because if you don’t, you expose your user to certain flaws.
But once you have HTTPS, extra encryption via javascript is pointless: everything already is secure.