使用Java进行RSA解密
我正在尝试使用 RSA 解密字符串。 它在 iPhone 上用 C# 加密,我有私钥。 这似乎是一个愚蠢的问题,但我见过的所有示例都显示了生成私钥。 我有私钥(它是十六进制的 byte[])。 它使用 PKCS#1 填充。 我不知道该怎么做的部分是使用我已有的私钥创建一个 java.security.Key 对象。
我是否需要让他们给我两部分的私钥……模数和指数?
提前致谢。
I am trying to decrypt a string with RSA. It was encrypted in C# on the iPhone and I have the private key. This seems like a silly problem, but all of the examples I have seen show generating the private key. I have the private key (it is a byte[] of hex). It using PKCS#1 padding. The part I cannot figure out how to do is create a java.security.Key object with the private key I already have.
Do I need to have them give me the private key in 2 parts...modulus and exponent?
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要通过 RSAPrivateKeySpec。 这是一个示例(基于此):
You need to go through a RSAPrivateKeySpec. Here's an example (based on this):