使用Java进行RSA解密

发布于 2024-07-30 05:00:11 字数 226 浏览 4 评论 0原文

我正在尝试使用 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 技术交流群。

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

发布评论

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

评论(1

伤感在游骋 2024-08-06 05:00:11

您需要通过 RSAPrivateKeySpec。 这是一个示例(基于):

        BigInteger n = new BigInteger(nBytes);
        BigInteger p = new BigInteger(pBytes);
        RSAPrivateKeySpec privateSpec = new RSAPrivateKeySpec(n, p);
        KeyFactory kf = KeyFactory.getInstance("RSA");
        Key privateKey = kf.generatePrivate(privateSpec);

You need to go through a RSAPrivateKeySpec. Here's an example (based on this):

        BigInteger n = new BigInteger(nBytes);
        BigInteger p = new BigInteger(pBytes);
        RSAPrivateKeySpec privateSpec = new RSAPrivateKeySpec(n, p);
        KeyFactory kf = KeyFactory.getInstance("RSA");
        Key privateKey = kf.generatePrivate(privateSpec);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文