OpenSSL 签名和 Google App Engine

发布于 2024-09-01 20:50:28 字数 333 浏览 3 评论 0原文

有没有办法在 Google App Engine (Python) 中使用 PEM 格式的私钥对值进行签名?

例如,在 PHP 中,可以这样实现:

$key = openssl_pkey_get_private($privateKey);
openssl_sign($strToBeSigned, $signature, $key);
echo "signature: ".base64_encode($signature);

Is there a way to do the same thing with Python in Google App Engine?

Is there a way to sign values with a PEM formatted private key in Google App Engine (Python)?

For example in PHP it could be achieved like this:

$key = openssl_pkey_get_private($privateKey);
openssl_sign($strToBeSigned, $signature, $key);
echo "signature: ".base64_encode($signature);

Is there a way to do the same thing with Python in Google App Engine?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

南笙 2024-09-08 20:50:28

尝试看看这个问题的答案,以及谷歌小组讨论的链接,看看是否有帮助。

使用 RSA private 对字符串进行签名Google App Engine Python SDK 上的密钥

Try taking a look at this question's answers, and the link to the google group discussion to see if that helps.

Signing a string with RSA private key on Google App Engine Python SDK

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文