TD-3: Create Player Service with Password Methods
Some checks failed
Quality Check / Validate OAS (push) Successful in 36s
Quality Check / Validate OAS (pull_request) Successful in 37s
Quality Check / Testing (push) Has been cancelled
Quality Check / Static Analysis (push) Has been cancelled
Quality Check / Linting (push) Has been cancelled
Quality Check / Linting (pull_request) Successful in 1m10s
Quality Check / Static Analysis (pull_request) Successful in 1m19s
Quality Check / Testing (pull_request) Successful in 5m24s

This commit is contained in:
Snoweuph 2025-02-11 11:35:10 +01:00
parent 671f278f54
commit ce70e4affe
Signed by: snoweuph
GPG key ID: BEFC41DA223CEC55

View file

@ -0,0 +1,52 @@
package de.towerdefence.server.player;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Component;
import java.nio.charset.StandardCharsets;
import java.security.MessageDigest;
import java.security.NoSuchAlgorithmException;
import java.security.SecureRandom;
import java.util.Arrays;
@Component
public class PlayerService {
@Autowired
private PlayerRepository playerRepository;
private final SecureRandom random;
public PlayerService(PlayerRepository playerRepository) {
this.playerRepository = playerRepository;
this.random = new SecureRandom();
}
public boolean checkPassword(Player player, String password) throws NoSuchAlgorithmException {
return Arrays.equals(
hashPassword(
player.getPasswordSalt(),
password.getBytes(StandardCharsets.UTF_8)
),
player.getPasswordHash()
);
}
public void setPassword(Player player, String password) throws NoSuchAlgorithmException {
byte[] salt = new byte[16];
this.random.nextBytes(salt);
byte[] passwordHash = hashPassword(
salt,
password.getBytes(StandardCharsets.UTF_8)
);
player.setPasswordSalt(salt);
player.setPasswordHash(passwordHash);
}
private static byte[] hashPassword(byte[] salt, byte[] password) throws NoSuchAlgorithmException {
MessageDigest md = MessageDigest.getInstance("SHA-512");
md.update(salt);
return md.digest(password);
}
}