如何从 RSA 模数创建 PEM 格式的 RSA 公钥?

发布于 2024-07-20 07:07:14 字数 320 浏览 6 评论 0原文

我有 RSA 公钥的模数。 我想将此公钥与 Python 库“M2Crypto”一起使用, 但是它需要 PEM 格式的公钥。

因此,我必须将 RSA 模数转换为 PEM 文件。

可以在此处找到模数。

有什么想法吗?

I have the modulus of an RSA public key. I want to use this public key with the Python library "M2Crypto", but it requires a public key in PEM format.

Thus, I have to convert the RSA modulus to a PEM file.

The modulus can be found here.

Any ideas?

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

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

发布评论

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

评论(1

_蜘蛛 2024-07-27 07:07:14

The M2Crypto library has a way to reconstruct a public key. You need to know the public exponent, e (often 65337 for RSA keys, but other numbers such as 3 or 17 have been used), and the modulus, n (which is the 512-bit number provided in the question). Note that the docs describe the length-encoded format used for e and n.

Once the public key has been reconstructed, it can be saved into a file and used again later without the hassle of conversion.

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