Merge branch 'passwords' into multitool/public

# Conflicts:
#	src/de/steamwar/sql/SteamwarUser.java
Dieser Commit ist enthalten in:
Chaoscaot 2023-12-17 17:23:30 +01:00
Commit bf2af5b45b

Datei anzeigen

@ -251,7 +251,7 @@ public class SteamwarUser {
random.nextBytes(salt);
String saltString = Base64.getEncoder().encodeToString(salt);
PBEKeySpec spec = new PBEKeySpec(password.toCharArray(), salt, 65536, 128);
PBEKeySpec spec = new PBEKeySpec(password.toCharArray(), salt, 65536, 512);
SecretKeyFactory factory = SecretKeyFactory.getInstance("PBKDF2WithHmacSHA512");
byte[] hash = factory.generateSecret(spec).getEncoded();
@ -278,7 +278,7 @@ public class SteamwarUser {
String saltString = parts[1];
byte[] salt = Base64.getDecoder().decode(saltString);
PBEKeySpec spec = new PBEKeySpec(password.toCharArray(), salt, 65536, 128);
PBEKeySpec spec = new PBEKeySpec(password.toCharArray(), salt, 65536, 512);
SecretKeyFactory factory = SecretKeyFactory.getInstance("PBKDF2WithHmacSHA512");
byte[] hash = factory.generateSecret(spec).getEncoded();