bcrypt 12 instead
All checks were successful
/ Build BaseBand Server (push) Successful in 1m16s

This commit is contained in:
Jess H 2024-06-15 03:53:42 +01:00
parent a4db314595
commit 97def8f472
Signed by: UnixSystemV
GPG key ID: 9B21C50B68D67F19

View file

@ -37,7 +37,7 @@ public class BotServiceHandler {
).findFirst().orElse(null);
if(user != null) {
user.set("password", BCrypt.withDefaults().hashToString(10, tcn.getString("password").toCharArray()));
user.set("password", BCrypt.withDefaults().hashToString(12, tcn.getString("password").toCharArray()));
tos.writeInt(201);
} else {
tos.writeInt(404);