从文件生成 MD5 哈希值

发布于 2024-10-14 02:28:25 字数 54 浏览 2 评论 0原文

当文件中的 MD5 哈希值生成文件名的哈希值时? ..或者文件之间的 MD5 哈希值有多独特?

When A MD5 hash from a file dose the hash generates for the File name ? .. or how unique is the MD5 hash from file to file ?

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

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

发布评论

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

评论(2

命比纸薄 2024-10-21 02:28:25

是否根据文件名、内容或两者生成取决于您如何实现它。 MD5 哈希值非常独特 - 您可以将它们用于< a href="https://stackoverflow.com/questions/4032209/is-md5-still-good-enough-to-uniquely-identify-files">在许多场景中识别数据(特别是当安全性不高时)一个问题)。

Whether it will be generated based on file name, contents or both depends on how you implement it. MD5 hashes are quite unique - you can use them for identifying data in many scenarios (specifically when security is not an issue).

一腔孤↑勇 2024-10-21 02:28:25

MD5 很长且足够好,可以防止两个文件之间的随机冲突。

但是,如果攻击者可以控制这些文件,他就可以轻松创建两个具有相同哈希值的文件。这是因为MD5存在冲突漏洞。考虑使用其他哈希值,例如 SHA1。 Git 使用文件的 SHA1 哈希来识别它们。

MD5 is long and good enough to prevent random collisions between two files.

But if you have an attacker that can control the files, he can easily create two files that have the same hash. This is because MD5 has collision vulnerabilities. Consider using another hash, such as SHA1. Git uses the SHA1-Hash of files to identify them.

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