如何计算图像的 sha1 哈希值
您好,我正在尝试计算图像的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将图像文件读入内存,然后对其调用 SHA1 函数。 Python:
这将为您提供图像的 SHA1,包括与其一起存储在文件中的标题、注释等。请记住,SHA1 只是将一串位转换为不同的固定大小的位串。就图像而言,它并没有什么神奇之处。
编辑:好的,C++。获取hashlib2plus,构造一个
sha1wrapper
,使用updateContext
最后hashIt
。Read the image file into memory, then call the SHA1 function on that. Python:
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 usingupdateContext
and finallyhashIt
.