I'm using asp.net mvc 5 and create a login page, it's working. But, by using Fiddler web debugger, I can view email and password easily.
Like this:
__RequestVerificationToken=kIMhqtcvDFpeb2pt0GBQWnvB_Ne8m9ycMiDL820vYFJ0fmfYpWcVYMnHp-mKigG24hP95u0JI4VL4Aw8crcoO2Rof9Y-WhJyx8XT3yPBiNg1&Email=email2%40gmail.com&Password=Pw123%21
So, Email is: email2@gmail.com
and password is: Pw123!
And my question is: Is there a way to encrypt password
value on client side before sending, and server can decrypt it?
Thank you!