erlang中的sha256加密
我在 php 中编写了一些代码,我使用了 mhash(MHASH_SHA256, $key) 及其给出的预期结果。我想知道我们如何在 erlang 中实现同样的事情。我可以在加密中看到它们是一个内置 sha 函数是它们的但我不认为这对 sha256 意味着什么。
有什么建议我必须做什么吗?
先感谢您。
i have written some code in php there i have use mhash(MHASH_SHA256, $key) and its giving result as expected.i wanna know how we can achieve same thing in erlang.i can see in crypto their is one inbuild sha function is their but i dont think so its mean for sha256.
any suggestion what i have to do ?
thank you in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您是否看过此页面,其中链接到 Erlang 的 SHA-256 模块?
编辑:显然该代码已过时,已替换为 此模块。 如果这仍然不能满足您的要求(就十六进制/二进制而言),我建议您向其作者发送电子邮件,最好附上补丁。
Have you seen this page, which links to an SHA-256 module for Erlang?
EDIT: Apparently that code is obsolete, replaced by this module. If that still doesn't do what you want (in terms of hex/binary) I suggest you email its author, preferably with a patch.
在我看来,上述 sha2 模块的返回值取决于您的输入。 如果用二进制调用,则结果是二进制; 如果你用字符串调用它,结果是一个字符串:
It seems to me that the return value of the mentioned sha2 module depends on your input. If you call it with a binary, the result is binary; if you call it with a string, the result is a string: