c# 计算文件的 md5 编码

using (FileStream fs = File.OpenRead(path))
{
    using (var crypto = MD5.Create())
    {
        var md5Hash = crypto.ComputeHash(fs);                
        return md5Hash;
    }
}

 

posted on 2022-07-13 17:41  空明流光  阅读(261)  评论(0编辑  收藏  举报

导航