我在使用 RSA 公钥解密解密文件时遇到问题。我的流程是接收xml文件,加密内容,然后写回同一个文件。另一个函数解密内容。我的源代码是:
public void decryptFile(String fileName,PrivateKey privateKey) throws Exception {
Cipher cipher = Cipher.getInstance("RSA/ECB/PKCS1Padding");
cipher.init(Cipher.DECRYPT_MODE, privateKey);
FileInputStream fis = new FileInputStream(fileName);
File file=new File("decryptedfile.xml");
if(file.exists()) {
file.delete();
}
FileOutputStream fos = new FileOutputStream("decryptedfile.xml");
CipherInputStream cis = new CipherInputStream(fis, cipher);
int i;
byte[] block = new byte[32];
//System.out.println("Read : "+cis.read(block));
while ((i = cis.read(block)) != -1) {
System.out.println(String.valueOf(i));
fos.write(block, 0, i);
}
fos.close();
}
我只是将加密文件的名称和相应的私钥值传递到函数中。然而,cis.read(block)
第一次尝试返回 -1。谁能建议我如何解密加密文件?