show/hide this revision's text 2 added 19 characters in body

The AES algorithm for symmetric encryption is generally the way to go for generic encryption of strings. However, I'm afraid that the .NET BCL doesn't simplify things any further for you the providing the basic encryption/decryption classes and functions.

You can download find a demo project that demonstrates good example of how to use System.Cryptographythe crypographic classes specifically for string encryption on this page. It appears to be very complete and well commented indeed - you may even find that you can use it without any further modifications. Note: Rijndael is the same algorithm as AESon MSDN.

Also(Technically, the former refers to the algorithm's real name, this MSDN Magazine article offers a great thorough discussion on and the topic of AES in latter the Advanced Encryption Standard.NET.)

show/hide this revision's text 1

The AES algorithm for symmetric encryption is generally the way to go for generic encryption of strings. You can download a demo project that demonstrates how to use System.Cryptography and AES on MSDN.

Also, this MSDN Magazine article offers a great thorough discussion on the topic of AES in .NET.