mirror of
https://github.com/oxen-io/session-android.git
synced 2025-10-23 21:09:00 +00:00
@@ -265,8 +265,11 @@ public class FullBackupExporter extends FullBackupBase {
|
||||
|
||||
while ((read = in.read(buffer)) != -1) {
|
||||
byte[] ciphertext = cipher.update(buffer, 0, read);
|
||||
outputStream.write(ciphertext);
|
||||
mac.update(ciphertext);
|
||||
|
||||
if (ciphertext != null) {
|
||||
outputStream.write(ciphertext);
|
||||
mac.update(ciphertext);
|
||||
}
|
||||
}
|
||||
|
||||
byte[] remainder = cipher.doFinal();
|
||||
|
Reference in New Issue
Block a user