Maison > Article > développement back-end > C# Calculer la chaîne de hachage MD5
C# Calculate MD5 Hash String
public static string CalculateMD5Hash(string input) { // step 1, calculate MD5 hash from input var md5 = MD5.Create(); byte[] inputBytes = Encoding.ASCII.GetBytes(input); byte[] hash = md5.ComputeHash(inputBytes); // step 2, convert byte array to hex string var sb = new StringBuilder(); for (int i = 0; i < hash.Length; i++) { sb.Append(hash[i].ToString("X2")); } return sb.ToString(); }
Ce qui précède est le contenu de C# Calculate MD5 Hash String Pour plus de contenu connexe, veuillez faire attention au site Web PHP chinois (www.php.cn) !