kopia lustrzana https://github.com/ryukoposting/Signal-Android
Move salt outside the loop
rodzic
73233c01ba
commit
b168e14985
|
@ -24,10 +24,11 @@ public abstract class FullBackupBase {
|
||||||
byte[] input = passphrase.replace(" ", "").getBytes();
|
byte[] input = passphrase.replace(" ", "").getBytes();
|
||||||
byte[] hash = input;
|
byte[] hash = input;
|
||||||
|
|
||||||
|
if (salt != null) digest.update(salt);
|
||||||
|
|
||||||
for (int i=0;i<250000;i++) {
|
for (int i=0;i<250000;i++) {
|
||||||
if (i % 1000 == 0) EventBus.getDefault().post(new BackupEvent(BackupEvent.Type.PROGRESS, 0));
|
if (i % 1000 == 0) EventBus.getDefault().post(new BackupEvent(BackupEvent.Type.PROGRESS, 0));
|
||||||
digest.update(hash);
|
digest.update(hash);
|
||||||
if (salt != null) digest.update(salt);
|
|
||||||
hash = digest.digest(input);
|
hash = digest.digest(input);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Ładowanie…
Reference in New Issue