Erlang 密码模块 - ECDSA、RSA、SHA256 等
我需要一个可以生成密钥对、计算安全哈希以及加密和签名数据的模块。有那个模块吗?或者也许有 OpenSSL 加密功能的接口?
I need a module that can generate keypairs, compute secure hashes and crypt and sign data. Is there any that module? Or maybe there is interface for OpenSSL crypto functions ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
sha256 的 sha2 模块
sha2 modile for sha256
首先阅读加密模块。现在从 R14A 开始是 NIF,因此您可以了解使用了哪种 OpenSSL C 函数。
Read crypto module first. Now it's NIF since R14A so you can find out what sort of OpenSSL C functions are used.