I have bunch of screens (asp.net C#) capturing data and transferring it back to a web service using json.
How can i encrypt content like passwords and decrypt it back in the C# code?
I have bunch of screens (asp.net C#) capturing data and transferring it back to a web service using json.
How can i encrypt content like passwords and decrypt it back in the C# code?
passwords are usually encrypted in an asymetric fashion (ie they can't be decrypted) so that's not what you want...
What's your problem ?
I you just want to be sure the data comes from your app and not some random evil guy a signature would be enough.
If you want nobody to intercept your data why not use HTTPS ?