Simple 2 way encryption for C#

Posted by Matt Dawdy on Stack Overflow See other posts from Stack Overflow or by Matt Dawdy
Published on 2008-10-03T05:41:31Z Indexed on 2010/03/11 18:24 UTC
Read the original article Hit count: 241

Filed under:
|

I'm looking for very simple encrypt and decrypt functionality for some data. It's not mission critical. I need something to keep honest people honest, but something a little stronger than ROT13 or Base64.

I'd prefer something that is already included in the .Net framework 2.0 so I don't have to worry about any external dependencies.

Pre-emptive EDIT: I really don't want to have to mess around with public/private keys, etc. I don't know much about encryption, but I do enough to know that anything I wrote would be less than worthless...in fact, I'd probably screw up the math and make it trivial to crack.

© Stack Overflow or respective owner

Related posts about c#

Related posts about encryption