是否可以从私钥的 byte[] 数组中恢复 RSA 公钥?

发布于 2024-12-04 14:33:40 字数 210 浏览 1 评论 0原文

我想知道是否可以从私钥恢复 RSA 公钥?像这样加载私钥:

PrivateKey privateKey = GnuRSAPrivateKey.valueOf(Utils.hexStringToBytes(prvKey));

如何从私钥加载公钥? privateKey.getFormat 返回 null。

I'm wondering if it's possible to recover a RSA public key from private key? Private key loaded like this:

PrivateKey privateKey = GnuRSAPrivateKey.valueOf(Utils.hexStringToBytes(prvKey));

How to load the PublicKey from private? privateKey.getFormat returns null.

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

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

发布评论

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

评论(1

陪你搞怪i 2024-12-11 14:33:40

我假设您的 GnuRSAPrivateKey 来自 GNU Crypto 项目

GnuRSAPrivateKey 实例包含私钥,以及一些额外的值,这些值并不是实现 RSA 严格需要的,但对于性能(使用中国剩余定理)和安全性(公共指数很有用)仍然很受欢迎用于掩蔽,这有助于防止定时攻击)。因此,这个私钥也包含了公钥。

所以这应该有效:

GnuRSAPrivateKey sk = GnuRSAPrivateKey.valueOf(theEncodedPrivateKey);
PrivateKey privateKey = sk;
PublicKey publicKey = new GnuRSAPublicKey(sk.getN(), sk.getE());

I am assuming that your GnuRSAPrivateKey is from the GNU Crypto project.

A GnuRSAPrivateKey instance contains the private key, with some extra values which are not strictly needed to implement RSA, but are still welcome for performance (using the Chinese Remainder Theorem) and for security (the public exponent is useful for masking, which helps against timing attacks). Therefore, this private key also contains the public key.

So this should work:

GnuRSAPrivateKey sk = GnuRSAPrivateKey.valueOf(theEncodedPrivateKey);
PrivateKey privateKey = sk;
PublicKey publicKey = new GnuRSAPublicKey(sk.getN(), sk.getE());
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文