Small improvement

This commit is contained in:
M66B 2020-01-06 09:36:11 +01:00
parent 22f7438063
commit 16874d7b79
1 changed files with 2 additions and 2 deletions

View File

@ -678,9 +678,9 @@ public class ActivitySetup extends ActivityBase implements FragmentManager.OnBac
byte[] salt = new byte[16];
byte[] prefix = new byte[16];
if (raw.read(salt) != salt.length)
throw new IOException("length");
throw new IOException("Invalid file size");
if (raw.read(prefix) != prefix.length)
throw new IOException("length");
throw new IOException("Invalid file size");
SecretKeyFactory keyFactory = SecretKeyFactory.getInstance("PBKDF2WithHmacSHA1");
KeySpec keySpec = new PBEKeySpec(password.toCharArray(), salt, KEY_ITERATIONS, KEY_LENGTH);