|
@@ -201,9 +201,10 @@ public class DownloadFileOperation extends RemoteOperation {
|
|
|
byte[] authenticationTag = EncryptionUtils.decodeStringToBase64Bytes(metadata.getFiles()
|
|
|
.get(mFile.getEncryptedFileName()).getAuthenticationTag());
|
|
|
|
|
|
- try (FileOutputStream fileOutputStream = new FileOutputStream(tmpFile)){
|
|
|
+ try {
|
|
|
byte[] decryptedBytes = EncryptionUtils.decryptFile(tmpFile, key, iv, authenticationTag);
|
|
|
|
|
|
+ FileOutputStream fileOutputStream = new FileOutputStream(tmpFile);
|
|
|
fileOutputStream.write(decryptedBytes);
|
|
|
} catch (Exception e) {
|
|
|
return new RemoteOperationResult(e);
|