在 C# 中,是否可以从文件名安全的字节数组中获取哈希值?

发布于 2024-11-07 03:12:30 字数 116 浏览 0 评论 0 原文

我需要对文件的内容进行哈希处理(根据文件内容获取唯一值),然后将文件写入文件系统,并以该哈希值命名。

这可能吗?我使用 SHA1 完成此操作,但在生成的哈希中得到了不文件系统安全的字符(斜杠、冒号等)。

I have a need to hash the contents of a file (to get a unique value, based on the file contents), and then write a file to the file system, named for that hash.

Is this possible? I did it using SHA1, but got characters in the resulting hash that were not file system safe (slashes, colons, etc.).

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

千と千尋 2024-11-14 03:12:30
var originalBytes = Encoding.ASCII.GetBytes(data);
var hashedBytes = Hasher.ComputeHash(originalBytes);

var builder = new StringBuilder();
foreach (Byte hashed in hashedBytes)
    builder.AppendFormat("{0:x2}", hashed);

return builder.ToString();

这基本上相当于 git 的作用

var originalBytes = Encoding.ASCII.GetBytes(data);
var hashedBytes = Hasher.ComputeHash(originalBytes);

var builder = new StringBuilder();
foreach (Byte hashed in hashedBytes)
    builder.AppendFormat("{0:x2}", hashed);

return builder.ToString();

this is basically the equivalent of what git does

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文