如何从 byte[] 数组中恢复 RSA 公钥?
我想知道是否可以恢复我之前转换为字节数组的 RSA 公钥。
byte[] keyBytes = publicKey.getEncoded();
感谢您的帮助。
I'm wondering if it's possible to recover a RSA public key that I have converted to byte array previously.
byte[] keyBytes = publicKey.getEncoded();
Thanks for the help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
有关详细信息请参阅本教程
For more info see this tutorial
对于其他想要从字节数组获取私钥而不是公钥的人:
For others who want to get private key instead of public key from byte array:
很好的答案。感谢您的链接。为了完整起见,我发现了这个 将密钥转换为字节,如何将其转换回密钥?
并且工作得很好。
Great answer. Thanks for the link. Just for complete, I found this Converted secret key into bytes, how to convert it back to secrect key?
and just worked very well.