我面临着一个关于在 Java 中解密的相当奇怪的行为。使用下面的代码
public void decrypt(File file, String output_file_path) throws FileNotFoundException, IOException, GeneralSecurityException {
String hex_enc_key = "346a23652a46392b4d73257c67317e352e3372482177652c";
Cipher cipher = Cipher.getInstance("AES/ECB/PKCS5Padding");
SecretKeySpec keySpec = new SecretKeySpec(HexParser.fromHexString(hex_enc_key), "AES");
cipher.init(Cipher.DECRYPT_MODE, keySpec);
CipherOutputStream cos = new CipherOutputStream(new FileOutputStream(new File(output_file_path)), cipher);
FileInputStream fis = new FileInputStream(file);
doCopy(fis, cos);
}
我得到随机异常
java.security.InvalidKeyException:非法密钥大小或默认参数
我用谷歌搜索了这个问题,发现了JCE 无限强度,但我不明白为什么我会得到这些随机异常,即使我总是使用相同的密钥(有时它有效,有时无效,基于我需要的输入文件解密)。
为了清楚起见,我正在使用
Cipher.getMaxAllowedKeyLength("AES")
检查 JCE 限制,并且使用相同的设置加密没有任何问题:
public void encrypt(File file, String output_file_path) throws FileNotFoundException, IOException, GeneralSecurityException {
Cipher cipher = Cipher.getInstance("AES/ECB/PKCS5Padding");
SecretKeySpec keySpec = new SecretKeySpec(HexParser.fromHexString(db_enc_key), "AES");
cipher.init(Cipher.ENCRYPT_MODE, keySpec);
CipherInputStream cis = new CipherInputStream(new FileInputStream(file), cipher);
FileOutputStream os = new FileOutputStream(new File(output_file_path));
doCopy(cis, os);
cis.close();
os.close();
}
谁能指出我正确的方向?
非常感谢,尼古拉