计算字符串和文件的MD5值
发布时间:2013-09-29 19:52 来源/作者:藕码网 分类:自定义函数
TAG标签:
- 代码详情
- 用户评论
- 相关代码
-
计算字符串和文件的MD5值
代码片段:
//计算文件的MD5值 public string MD5Value(String filepath) { MD5 md5 = new MD5CryptoServiceProvider(); byte[] md5ch; using (FileStream fs = File.OpenRead(filepath)) { md5ch = md5.ComputeHash(fs); } md5.Clear(); string strMd5 = ""; for (int i = 0; i < md5ch.Length - 1; i++) { strMd5 += md5ch[i].ToString("x").PadLeft(2, '0'); } return strMd5; }
-
最新评论
菜单/ Menu