small fixes

This commit is contained in:
Sen 2025-05-30 22:12:50 +02:00
parent 228eec0a79
commit 06a14ae645
Signed by: sen
GPG key ID: 3AC50A6F47D1B722
2 changed files with 2 additions and 19 deletions

View file

@ -136,7 +136,7 @@ public class EncryptUtil {
hash = digest.digest(data);
}
catch(NoSuchAlgorithmException e) {
Log.SYSTEM.error(e, "Konnte Prüfwert nicht berechnen");
Log.SYSTEM.error(e, "Konnte Schlüssel-Prüfwert nicht berechnen");
return "<?>";
}
byte[] xor = new byte[8];
@ -215,7 +215,7 @@ public class EncryptUtil {
return factory.generateSecret(spec).getEncoded();
}
catch(NoSuchAlgorithmException | InvalidKeySpecException e) {
Log.SYSTEM.error(e, "Konnte Passwort-Prüfwert nicht errechnen");
Log.SYSTEM.error(e, "Konnte Passwort-Prüfwert nicht berechnen");
return null;
}
}