↧
C# MD5 and SHA encryption wrapper class
This is a simple utility class for MD5 (128bit) or SHA-2 (256bit,384bit and 512bit) hash encryption. It outputs the string using 2 byte hex values, e.g. AB12FE. It doesn’t include SHA-1 but that’s...
View ArticleC# Symmetric encryption wrapper
The original class for this post can be found at codeproject.com. This class is a tidied up version (and disposes more aggressively). You may get issues with the GetLegalIV portion of the code,...
View Article