User Tools

Site Tools


note:prog:csharp:241224:001:index

C#: Calculate a MD5 hash from a string (2024-12-24)

  • I use the following C# code to calculate a MD5 hash from a string. It works well and generates a 32-character hex string like this MD5: “0CBC6611F5540BD0809A388DC95A615B”
  • Test code:
    Console.WriteLine("MD5: " +CreateMD5("Test"));

Reference

Solution

  •         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);
    
                    var hexString = BitConverter.ToString(hashBytes);
                    hexString = hexString.Replace("-", "");
                    return (hexString); 
                }
            }
    

Another Solution

  •         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);
    
                    StringBuilder sb = new System.Text.StringBuilder();
                    for (int i = 0; i < hashBytes.Length; i++)
                    {
                        sb.Append(hashBytes[i].ToString("X2"));
                    }
                    return sb.ToString();
                }
            }
    

.NET 5 Solution

  •         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);
    
                    return Convert.ToHexString(hashBytes); // .NET 5 +
                }
            }
    

  • 4 person(s) visited this page until now.
note/prog/csharp/241224/001/index.txt · Last modified: 2024/12/24 14:56 (external edit)