当使用 Bouncy Castle 作为提供程序和 GCM 时,如果我故意修改了密文,则应该抛出 invalidCipherTextException 并且如果我在 cipherOutputStream.close() 上以调试模式单步执行,我可以看到 invalidCipherTextException 但是我无法捕获此异常。
BufferedInputStream is = new BufferedInputStream(new FileInputStream(user.encryptedDirectory.containedFiles.get(counter)));
CipherOutputStream os = new CipherOutputStream(new FileOutputStream(user.unencryptedDirectory.location.toAbsolutePath() + "\\"+ user.encryptedDirectory.containedFiles.get(counter).getName() + ""), cipher);
copy(is,os);
is.close();
os.close();
private static void copy(InputStream is, OutputStream os) throws IOException {
int i;
byte[] b = new byte[1024];
while((i=is.read(b))!=-1) {
os.write(b, 0, i);
}
}
我需要重写以便调用 cipher.doFinal() 还是我误解了什么?