Zero-dependency, pure C# implementation of the MD5 hashing algorithm.
Our C# MD5 is very easy to use, instead of "using (..." blob we directly call it. Example:
string hash = MD5.ComputeHashHex("hello");
Console.WriteLine(hash); /* Output: 5d41402abc4b2a76b9719d911017c592 */MD5 hashing algorithm is not secure.