Possible Duplicate:
Encrypt/Decrypt string in .NET
I have a string which users send us by email. It contains information on why an error happens in an applicaton. I don't want that user to be able to read the content of this string, so I need to somehow encrypt it.
What is the best way to convert a readable string to non-readable and then convert it back to a readable format when it arrives on our site?
Edit
I knew about doing encryption using symmetric/unsymmetrical encryption, but I was looking for a fast and easy way to do this. If it was C, I would just NOT the bytes (converts 1s to 0s and 0s to 1s). Th result is not readable, but using the same method revert it back to readable string. Is there any simple way in C# to do this?
RijndaelorAesOR Asymmetric encryption which includesRSA– Anirudh Jan 4 at 13:02