【发布时间】:2017-02-13 11:28:28
【问题描述】:
我正在尝试从 pem 文件在 Android 应用程序中创建 PrivateKey 实例以解密某些数据,但出现以下错误:
java.lang.RuntimeException: 错误:0c0890ba:ASN.1 编码例程:asn1_check_tlen:WRONG_TAG
代码:
// Read private key.
InputStream is = context.getResources().openRawResource(R.raw.private_key);
br = new BufferedReader(new InputStreamReader(is));
List<String> lines = new ArrayList<String>();
line = null;
while ((line = br.readLine()) != null)
lines.add(line);
// Removes the first and last lines of the file (comments).
if (lines.size() > 1 && lines.get(0).startsWith("-----") &&
lines.get(lines.size()-1).startsWith("-----")) {
lines.remove(0);
lines.remove(lines.size()-1);
}
// Concats the remaining lines to a single String.
StringBuilder sb = new StringBuilder();
for (String aLine: lines)
sb.append(aLine);
String keyString = sb.toString();
// Converts the String to a PublicKey instance
byte[] keyBytes = Base64.decode(keyString, Base64.DEFAULT);
PKCS8EncodedKeySpec spec = new PKCS8EncodedKeySpec(keyBytes);
KeyFactory keyFactory = KeyFactory.getInstance("RSA");
mKey = keyFactory.generatePrivate(spec);
有什么帮助吗?
【问题讨论】:
-
您的密钥是 PKCS#8 格式还是 PKCS#1 格式?它以
----BEGIN PRIVATE KEY-----或----BEGIN RSA PRIVATE KEY-----开头?在第二种情况下,您需要将其转换为 pcks8 -
你是对的 pedrofb,如果你想让我将它设置为正确答案,请将你的评论作为答案。
标签: java android encryption rsa private-key