erlang 中的 hash_hmac
我想知道,有没有办法在erlang中实现 hash_hmac("sha256", $token, $signkey, true)
(php) ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我想知道,有没有办法在erlang中实现 hash_hmac("sha256", $token, $signkey, true)
(php) ?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(3)
erlsha2 库支持 sha256 和 hmac,如 这个问题的答案。
The erlsha2 library supports sha256 and hmac, as explained in the answer to this question.
看看 http://erlang.org/doc/apps/crypto/index.html< /a>
Look at http://erlang.org/doc/apps/crypto/index.html
我刚刚谷歌搜索了这个
看起来像Sha256 Erlang 基础库中缺少,但博客上的作者手工编写了一个实现。
I just googled this
Looks like Sha256 is missing from erlang base libraries, but the author on the blog hand coded an implementation.