views:

68

answers:

1

Possible Duplicate:
Encrypt/Decrypt string in .NET

I've been searching all over Google for a simple way to do this, but they don't work in C# 4.0 which I'm using. I have a textbox where i input the string i want to encrypt, and then it encrypts that text and displays the encrypted version of the text on a label. Then, they put it in to the decrypt textbox, and push another button and it decrypts it. I'm going to put these functions in 2 different class libraries so I can re-use them without writing all of the code again. Does anyone have some source code, examples or tutorials that can help me?

+1  A: 

Seems like this has already been asked: http://stackoverflow.com/questions/202011/encrypt-decrypt-string-in-net

Bernard