哈希值是什么类型?我可以使用比较运算符吗?
我正在开发一个 Firefox 扩展,我想知道:
- 从字符串中获取哈希值后,该值是什么数据类型?
- 我可以对它们使用比较运算符吗?
所以我想做的是比较两个哈希值,看看一个是否高于另一个。就像比较 if 5 >= 4
一样。这可能吗?将哈希值视为整数?
I'm developing a firefox extension and i'd like to know:
- After i obtain a hash value from a string, what data type is that value?
- Can i use comparison operators with them?
So what i would like to do is compare two hash values and see if one is e.g. higher than the other. Just like comparing if 5 >= 4
. Is this possible? To treat hash values like integers?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
MD5 是最流行的哈希算法之一。它为您提供字符串中的十六进制数字,可用于以合理的安全性进行比较。对于 JavaScript,您可以尝试 crypto-js,但您可以轻松地在网。
MD5 is one of the most popular hashing algorithms. It gives you a hex-decimal number from a string that can be used for comparison with reasonable safety. For JavaScript you might try crypto-js but you can easily find many other implementations on the net.
在 Firefox 插件中,您应该使用 nsICryptoHash。例如,如果要使用 MD5 算法对字符串进行哈希处理,则可以使用以下函数:
请注意,这将返回 base64 编码的哈希值。使用
finish(false)
获取原始(二进制)哈希值。In a Firefox add-on you should be using nsICryptoHash. For example, if you want to hash a string using the MD5 algorithm you would use the following function:
Note that this returns the base64-encoded hash value. Use
finish(false)
to get the raw (binary) hash value.