M2Crypto 使用 AES256 加密/解密
有人可以向我提供使用 Python 使用 m2crypto aes256 CBC 加密/解密的代码吗
Can someone provide me code to encrypt / decrypt using m2crypto aes256 CBC using Python
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
M2Crypto 的文档很糟糕。 有时 OpenSSL 文档(m2crypto 包装 OpenSSL)可以提供帮助。 最好的选择是查看 M2Crypto 单元测试 - https:/ /gitlab.com/m2crypto/m2crypto/blob/master/tests/test_evp.py - 查找
test_AES()
方法。M2Crypto's documentation is terrible. Sometimes the OpenSSL documentation (m2crypto wraps OpenSSL) can help. Your best bet is to look at the M2Crypto unit tests -- https://gitlab.com/m2crypto/m2crypto/blob/master/tests/test_evp.py -- look for the
test_AES()
method.看看 m2secret:
Take a look at m2secret:
我在 M2Crypto 周围使用以下包装器(借自 cryptography.io):
I use following wrapper around M2Crypto (borrowed from cryptography.io):
当谈到安全性时,没有什么比阅读文档更好的了。
http://chandlerproject.org/bin/view/Projects/MeTooCrypto
即使我花时间理解并制作完美的代码供您复制和粘贴,您不会知道我做得好不好。 我知道不是很有帮助,但我祝你好运并保证数据安全。
When it comes to security nothing beats reading the documentation.
http://chandlerproject.org/bin/view/Projects/MeTooCrypto
Even if I took the time to understand and make the perfect code for you to copy and paste, you would have no idea if I did a good job or not. Not very helpful I know, but I wish you luck and secure data.