c# md5 code example

Example 1: c# md5 string

public static string CreateMD5(string input)
{
        // Use input string to calculate MD5 hash
	using (System.Security.Cryptography.MD5 md5 = System.Security.Cryptography.MD5.Create())
    {
    	byte[] inputBytes = System.Text.Encoding.ASCII.GetBytes(input);
		byte[] hashBytes = md5.ComputeHash(inputBytes);

		// Convert the byte array to hexadecimal string
		StringBuilder sb = new StringBuilder();
		for (int i = 0; i < hashBytes.Length; i++)
		{
			sb.Append(hashBytes[i].ToString("X2"));
		}
		return sb.ToString();
	}
}

Example 2: c# md5 int

int source = 123;
String hash;

// Do not omit "using" - should be disposed
using (var md5 = System.Security.Cryptography.MD5.Create()) 
{
	hash = String.Concat(md5.ComputeHash(BitConverter
	.GetBytes(source))
	.Select(x => x.ToString("x2")));
}

// Test
// d119fabe038bc5d0496051658fd205e6
Console.Write(hash);