Thursday, February 23, 2006

.Net (C#) TripleDES/MD5 Encrypt/Decrypt

C# Shiznit - Library Encrypt and Decrypt Methods Using TripleDES and MD5

Bobby DeRosa provides a short and sweat TripleDES Encrypt/Decrypt code sample. I like this one over others I’ve found (and it’s cleaner than what I’m using) so I wanted to make note of it…

2 comments:

Greg said...

Thank you...

Anonymous said...

As I commented on his post, be sure not to forget to Clear (which is really a call to Dispose) or Dispose directly on the managed wrappers around unmanaged resources such as the .NET crypto classes he demonstrates.