すでに暗号化されているファイルを復号化するためにコードを使用しているアプリケーションがあります。ファイルの場所は「/mnt/sdcard/myfolder/test.mp4」です。test.mp4ファイルのサイズは約20MBです。
次のコードを使用して小さなサイズの暗号化されたファイルを復号化すると、ファイルは正常に復号化されますが、大きなビデオファイルを復号化しようとすると、例外outOfMemoryException
が発生します。
コードは次のとおりです。
FileOutputStream fos = new FileOutputStream(outFilePath);
Cipher cipher = Cipher.getInstance("AES/CBC/PKCS5Padding");
byte[] keyBytes= new byte[16];
//byte[] b= key.getBytes(Charset.forName("UTF-8"));
byte[] b= key.getBytes("UTF-8");
Log.i("b",""+b);
int len= b.length;
Log.i("len",""+len);
if (len > keyBytes.length) len = keyBytes.length;
System.arraycopy(b, 0, keyBytes, 0, len);
SecretKeySpec keySpec = new SecretKeySpec(keyBytes, "AES");
IvParameterSpec ivSpec = new IvParameterSpec(keyBytes);
cipher.init(Cipher.DECRYPT_MODE,keySpec,ivSpec);
byte[] results = new byte[cipher.getOutputSize(abc.length)];
try
{
Log.i("output size:", ""+cipher.getOutputSize(abc.length));
***results = cipher.doFinal(abc);***
}
catch (Exception e) {
// TODO: handle exception
Log.e("EXCEPTION:", e.getMessage());
}
fos.write(results);
注:byte[] abc = new byte[64];
入力バイト配列が含まれています。