MD5方法代码(生成小写的md5) C#版本

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了MD5方法代码(生成小写的md5) C#版本相关的知识,希望对你有一定的参考价值。

public string GetMD5Str(string input)
{
// Use input string to calculate MD5 hash
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"));
// To force the hex string to lower-case letters instead of
// upper-case, use he following line instead:
// sb.Append(hashBytes[i].ToString("x2"));
}
return sb.ToString().ToLower();
}

以上是关于MD5方法代码(生成小写的md5) C#版本的主要内容,如果未能解决你的问题,请参考以下文章

在线生成32位和16位大小写MD5密文

如何使php的MD5与C#的MD5一致?

生成文本文件的 MD5 校验和值

MD5加密方法32位小写

C#生成MD5签名字符串

C#生成MD5签名字符串