在 Windows 上计算文件夹的校验和并在 Linux 上验证
我有以下要求:
- 从整个文件夹计算一个校验和(首选 SHA1)。这必须在 Windows 上完成。
- 将此文件夹从 Windows 移动到 Linux 机器。
- 根据 Linux 机器上的哈希值验证整个文件夹。
欢迎任何想法!
I have the following requirement:
- Calculate one checksum (SHA1 preferred) from an entire folder. This has to be done on Windows.
- Move this folder from a Windows to a Linux box.
- Verify the entire folder against the hash value on the Linux box.
Any ideas are welcome!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
md5深
http://linhost.info/2010/02/checksum-a- Directory-with-md5deep/
它是使用 MD5 完成的,但允许您计算子目录的哈希值,并且据说是跨平台的。如果有 SHA 版本,我不会感到惊讶。
替代解决方案是通过 SSH 使用 rsync 进行传输(在 Windows 机器上安装 Cygwin)。这将确保目标与源匹配。
md5deep
http://linhost.info/2010/02/checksum-a-directory-with-md5deep/
It's done using MD5, but allows you to calculate hashes for sub-directories and is supposedly cross-platform. It would not surprise me if there was a SHA version out there.
Alternate solution would be to do the transfer with rsync over SSH (install Cygwin on the Windows box). Which will make sure that the destination matches the source.