错误的 base64 解码 - M2Crypto - Python - Android - RSA

发布于 2025-01-01 08:16:02 字数 464 浏览 0 评论 0原文

尝试在我的服务器(Django/Python)上实现应用内计费的签名验证。

我发现这个很棒的主题,但我'我对这一行有疑问:

rsa = RSA.load_pub_key_bio(bio)

如果我完全按照那里的编码进行操作,我会得到一个“RSAError:没有起始行”[这是有道理的,因为 python 并不真正喜欢 pem 的定义方式]

我决定将我的密钥放入.pem 文件和加载它

rsa = RSA.load_pub_key("public.pem")

但是,我得到一个“RSAError:错误的base64解码”。有什么想法吗?

Trying to implement the signature verification of inapp billing on my server (Django/Python).

I found this great topic but I'm having issues with this line:

rsa = RSA.load_pub_key_bio(bio)

If I do it exactly as it is coded there I get a "RSAError: no start line" [and this makes sense since python didnt really like how pem was defined]

I decided to put my key into a .pem file and load it with

rsa = RSA.load_pub_key("public.pem")

However, I get a "RSAError: bad base64 decode" . Any ideas?

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

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

发布评论

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

评论(1

南…巷孤猫 2025-01-08 08:16:02

好的,找到并解决了我的问题(但解释会很简洁)。

我必须每 75 个字符有一个 \n ...像这样格式化它才能工作。

Okay, found and fixed my problem (but an explanation would be neat).

I had to have a \n every 75 chars ... formatting it like this made it work.

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