small fixes
This commit is contained in:
parent
228eec0a79
commit
06a14ae645
2 changed files with 2 additions and 19 deletions
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue