c# 对文件进行MD5加密
c# MD5 encryption of files
下载地址
用户评论
public static string GetFileMD5(string filepath) { StringBuilder sb = new StringBuilder(); using (MD5 md5=MD5.Create()) { using (FileStream fs=File.OpenRead(filepath)) { byte[] newB = md5.Co