从文件生成 MD5 哈希值
当文件中的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是否根据文件名、内容或两者生成取决于您如何实现它。 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).
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.