是否有一个好的Python库可以在不使用子进程的情况下提供PGP解密功能?
我正在寻找一种在 python 中解密 pgp 消息而不使用子进程的方法。我已经查看了 http://wiki.python.org/moin/GnuPrivacyGuard 但没有这些解决方案奏效了。 Pyme 几乎可以工作,除了我在尝试使用 set_passphrase_cb 来避免任何用户交互时碰壁,但无法让它工作( 在没有用户交互的情况下使用 pyme 在 python 中解密 PGP 时出现问题)。
平台是Ubuntu 10.04。你会推荐什么图书馆?
I am looking for a way to decrypt pgp messages in python without the use of a subprocess. I have checked out http://wiki.python.org/moin/GnuPrivacyGuard but none of those solutions worked. Pyme almost worked except I hit a wall when trying to use set_passphrase_cb to avoid any user interaction but couldn't get it working ( Problem decrypting PGP in python with pyme without user interaction ).
The platform is Ubuntu 10.04. What library would you recommend?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
编辑:您提到的其他两个库。似乎什么都没有。
EDITED: other the two libraries you mentioned. there doesn;t seem to be anything.
您可以使用
ctypes
围绕您需要的 GPGME 部分滚动您自己的包装器。You could use
ctypes
to roll your own wrapper around just the parts of GPGME you need.