我正在尝试从受密码保护的PEM文件中读取数据,以便从这些数据生成公钥和私钥。我有密码,我需要在打开文件时传递密码。但是我没有选择在Java中做任何选择。
需要紧急援助。如果我能得到一个代码示例,情况会好得多。
编辑:
我目前的代码是 -
public void readPrivateKey(String filePath)
{
File fp = new File(filePath);
FileInputStream fis = new FileInputStream(fp);
DataInputStrean dis = new DataInputStream(fis);
byte [] keyBytes = new byte [(int) fp.length()];
dis.readFully(keyBytes);
dis.close();
String temp = new String(keyBytes);
String privateKeyPem = removeUnnecessaryTags(temp); //this function returns a string after removing String like this "BEGIN......."
byte[] decoded = Base64.decode(privateKeyPem);
ASN1Sequence primitive = (ASN1Sequence) ASN1Sequence.fromByteArray(decoded);
Enumeration <?> e = primitive.getObjects();
BigInteger bigInt = ((DERInteger)e.NextElement()).getValue();
int version = bigInt.intValue();
BigInteger modulus = ((DERInteger)e.NextElement()).getValue();
BigInteger publicExp = ((DERInteger)e.NextElement()).getValue();
//... all the values has been retrieved in this way
}
答案 0 :(得分:0)
我相信你正在接受RSA密钥对。
你可以不使用像这样的Java,
openssl rsa -in MYFILE.pem -pubout > MYFILE.pub
ssh-keygen -f MYFILE.pub -i -m PKCS8
如果您需要在Java中执行此操作,请参阅评论中@ m0skit0给出的链接。