来自 Python 的 PGP 签名?
在 Python 应用程序中创建和验证 PGP/GPG 签名的最简单方法是什么?
我可以使用 subprocess 调用 pgp 或 gpg 并解析输出,但我一直在寻找一种不需要安装外部程序的方法(我的应用程序是跨平台 mac/windows/unix)。
What is the easiest way to create and verify PGP/GPG signatures from within a Python application?
I can call pgp or gpg using subprocess and parse the output, but I was looking for a way that didn't require an external program to be installed (my application is cross-platform mac/windows/unix).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我认为 GPGME 和 PyMe Python 包装器 应该可以满足您的需要。
I think GPGME and the PyMe Python wrapper should do what you need.
除了 PyMe 之外,还可以考虑 python-gnupg 和 gnupg 接口。
In addition to PyMe, consider python-gnupg and the gnupginterface.