需要从字符串中获取 MD5 哈希。
得到一个错误 MD5 为空。
我想从字符串中获取 32 个字符的 MD5 哈希。
using (System.Security.Cryptography.MD5 md5 =
System.Security.Cryptography.MD5.Create("TextToHash"))
{
byte[] retVal = md5.Hash;
StringBuilder sb = new StringBuilder();
for (int i = 0; i < retVal.Length; i++)
{
sb.Append(retVal[i].ToString("x2"));
}
}