是否可以从私钥的 byte[] 数组中恢复 RSA 公钥?
我想知道是否可以从私钥恢复 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我假设您的
GnuRSAPrivateKey
来自 GNU Crypto 项目。GnuRSAPrivateKey
实例包含私钥,以及一些额外的值,这些值并不是实现 RSA 严格需要的,但对于性能(使用中国剩余定理)和安全性(公共指数很有用)仍然很受欢迎用于掩蔽,这有助于防止定时攻击)。因此,这个私钥也包含了公钥。所以这应该有效:
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: