javascript - How to get a password encrypted since the Java Script file in my web application? -


i'm designing code standard login in web application, consider doing password encryption on client side better making mongo server doing it.

so, if have code ...

$("#btnsignup").click( function () {          var sign = {              user:$("#signuser").val(),             pass:$("#signpass").val()         };      }); 

and i'd post of sign password value encrypted, how achieve this? javascript support aes?

you should submit login page on https , make use of certificates encryption. javascript never idea things need security since can control/influence execution of using developer tools built browsers


Comments

Popular posts from this blog

c# - Send Image in Json : 400 Bad request -

jquery - Fancybox - apply a function to several elements -

An easy way to program an Android keyboard layout app -