下载用户下载文件后如何检查md5?
我们可能注意到很多下载网站都提供md5字符串。例如,当我下载ABC.zip时,以及一个md5字符串,例如:“2743a6a9fe6f873df1c7ed8ac91df5d7 *ABC.zip
”。我知道它背后的想法,它是防止文件伪造的摘要算法。
我的问题是用户如何计算 ABC.zip 的 md5 字符串,并将其与网站提供的值进行比较?有没有现有的工具可以生成md5字符串?
We may notice many download sites provide md5 string. For example, when I download ABC.zip, along with an md5 string like: “2743a6a9fe6f873df1c7ed8ac91df5d7 *ABC.zip
”. I know the idea behind it, it’s Digest algorithm to prevent file forge.
My question is how a user calculates md5 string for the ABC.zip, and compare it with value site provides? Any existing tool to generate md5 string?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
当然,这有点取决于您的操作系统。在大多数 Linux/Unix 发行版下,您都有可用的
md5
或md5sum
程序。示例:
它还有一个检查模式,可以完全满足您的要求:
(test.md5 具有上一个命令的输出)
It depends a bit on your operating system ofcourse. Under most Linux/Unix distributions you have an
md5
ormd5sum
program available.Example:
It also has a check mode which does exactly what you're looking for:
(test.md5 has the output of the previous command)
在 Linux 系统上,该程序通常命名为
md5sum
。在 BSD 系统上,该程序通常命名为
md5
。用户http://en.wikipedia.org/wiki/Md5sum
在 Windows 系统上,目标
md5sum
和md5
实用程序有一个命令行选项,可以自动验证 MD5SUM 文件中列出的所有 MD5 哈希值:On Linux systems, the program is usually named
md5sum
.On BSD systems, the program is usually named
md5
.On Windows systems, aim users to http://en.wikipedia.org/wiki/Md5sum
Note that the
md5sum
andmd5
utilities have a command-line option that can verify all the MD5 hashes listed in an MD5SUM file automatically:视情况而定。编程语言通常有一个库来执行此操作。
OS X 有一个命令行实用程序“md5”。 Linux也有类似的东西。对于 Windows,不知道,但你可能可以轻松找到一些东西。
Depends. Programming languages usually have a library to do this.
OS X has a command line utility 'md5'. Linux has something similar. For windows, no idea, but you can probably find something easily.
对于 Windows,如果安装 Cygwin,则 md5sum 可用。
For windows, if you install Cygwin, md5sum becomes available.