在 Google App Engine Python SDK 上使用 RSA 私钥对字符串进行签名
是否有任何已知的方法可以在 Google App Engine Python SDK 上使用 RSA 私钥对纯文本字符串进行签名?
Is there any known way to sign a plain text string with RSA private key on Google App Engine Python SDK?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
gdata python 库中包含的 tlslite 库是一个不错的选择。
http://code.google.com/p/gdata-python-client/
示例:
The library tlslite included in the gdata python library is a good option.
http://code.google.com/p/gdata-python-client/
example:
我还没有使用过它,但这似乎是一个纯 Python RSA 实现,因此它可能适用于 App Engine:
http ://stuvel.eu/rsa
他们的 Mercurial repo 似乎相当活跃, 也。
I haven't used it, but this appears to be a pure-Python RSA implementation, so it might work on App Engine:
http://stuvel.eu/rsa
Their Mercurial repo appears to be fairly active, too.