gpt4 book ai didi

c# - 我将如何对文件执行 SHA1 哈希?

转载 作者:太空狗 更新时间:2023-10-29 22:07:44 25 4
gpt4 key购买 nike

如果我有一个文件,我想监视任何更改(除了查看文件日期戳等)。

如何对其内容执行 SHA1 哈希?

认为这就是 GIT 所做的,所以我只想学习如何做

最佳答案

using (FileStream stream = File.OpenRead(@"C:\File.ext"))
{
using (SHA1Managed sha = new SHA1Managed())
{
byte[] checksum = sha.ComputeHash(stream);
string sendCheckSum = BitConverter.ToString(checksum)
.Replace("-", string.Empty);
}
}

定期计算校验和。

关于c# - 我将如何对文件执行 SHA1 哈希?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1969977/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com