如何计算图像的 sha1 哈希值

发布于 2024-12-06 09:36:12 字数 88 浏览 1 评论 0原文

您好,我正在尝试计算图像的 sha1 哈希值。

有没有可以直接计算图像哈希值的函数?

抱歉,我忘了提及..我正在尝试使用 C++。

Hi i am trying to calculate sha1 hash for image.

Is there any function available to calulate hash of image directly?

Sorry i forgot to mention .. its in c++ i am trying.

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

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

发布评论

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

评论(1

苍白女子 2024-12-13 09:36:12

将图像文件读入内存,然后对其调用 SHA1 函数。 Python:

from hashlib import sha1
h = sha1(open(image_file, 'rb').read()).hexdigest()

这将为您提供图像的 SHA1,包括与其一起存储在文件中的标题、注释等。请记住,SHA1 只是将一串位转换为不同的固定大小的位串。就图像而言,它并没有什么神奇之处。

编辑:好的,C++。获取hashlib2plus,构造一个sha1wrapper,使用 updateContext 最后hashIt

Read the image file into memory, then call the SHA1 function on that. Python:

from hashlib import sha1
h = sha1(open(image_file, 'rb').read()).hexdigest()

This will give you the SHA1 of the image, including the headers, comments, etc. that are stored with it in the file. Remember that SHA1 just transforms a string of bits to a different, fixed-size string of bits. There's nothing magical about images as far as it is concerned.

EDIT: ok, C++. Get hashlib2plus, construct a sha1wrapper, feed it the image block-by-block using updateContext and finally hashIt.

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