4

我在我的应用程序中使用加密。我将私钥存储为字节数组并使用以下代码来恢复它:

PrivateKey private = KeyFactory.getInstance("RSA").generatePrivate(new PKCS8EncodedKeySpec(s_privateKeyIn1t));

它在我所有的目标 android 平台 2.1 -> 4.0.4 上都能完美运行,但在 Jelly Bean 上却失败了!

果冻豆抛出异常:

07-20 17:29:35.197: E/AnyBalance:Codec(990): Caused by: java.lang.RuntimeException: error:0D0680A8:asn1 encoding routines:ASN1_CHECK_TLEN:wrong tag
07-20 17:29:35.197: E/AnyBalance:Codec(990):    at org.apache.harmony.xnet.provider.jsse.NativeCrypto.d2i_PKCS8_PRIV_KEY_INFO(Native Method)
07-20 17:29:35.197: E/AnyBalance:Codec(990):    at org.apache.harmony.xnet.provider.jsse.OpenSSLRSAKeyFactory.engineGeneratePrivate(OpenSSLRSAKeyFactory.java:73)

怎么了?

4

2 回答 2

23

这是对我有用的代码(第二行是重要的部分):

PKCS8EncodedKeySpec privSpec = new PKCS8EncodedKeySpec(s_privateKeyIn1t);
KeyFactory keyFactory = KeyFactory.getInstance("RSA", "BC");
PrivateKey privateKey = keyFactory.generatePrivate(privSpec);
于 2014-03-18T11:15:36.967 回答
2

好吧,我不知道它发生的原因,但我已经想出了如何处理它。我刚刚在以前的 android 版本上重新编码了密钥,这个重新编码的密钥在 Jelly Bean 上工作。

我使用以下代码重新编码密钥:

Private key = KeyFactory.getInstance("RSA").generatePrivate(new PKCS8EncodedKeySpec(s_privateKeyIn1t));
byte [] xxx = s_privateKey.getEncoded(); //Then I watched this byte array in debugger and inserted it in a source code.
//Now it works on Jelly Bean
于 2012-07-20T18:13:53.907 回答