public static string ComputeMD5 (string text) // 计算字符串的 MD5
{
System.Security.Cryptography.MD5CryptoServiceProvider md = new System.Security.Cryptography.MD5CryptoServiceProvider();
string hc = BitConverter.ToString(md.ComputeHash(Encoding.Default.GetBytes(text)));
md.Dispose();
return (hc);
}
相关文章
- 07-16MFC计算字符串长度,获取字符长度
- 07-16计算字符串的长度.len,RuneCountInString
- 07-16计算字符串中al_num,spance_num,digit_num,other_num的个数
- 07-16转 这种方法可以免去自己计算大文件md5 的麻烦
- 07-164.#使用pycharm.编写一个函数计算传入字符串中字符的个数
- 07-16字符串 Manacher 计算最长回文子串
- 07-16涉及到数组、字符串的分治,二分查找等时,二分时候的边缘值怎么计算?到底是该取n/2还是n+1/2还是n-1/2?以leetcode旋转矩阵为例,详细解读!
- 07-16C# EF 加密连接数据库连接字符串
- 07-16九、栈的简单应用(计算字符串表达式的值)
- 07-16md5 计算文件一致性