chore(deps): update quarkus.version to v3.16.4

This commit is contained in:
renovate[bot]
2024-11-23 14:40:16 +00:00
committed by Athou
parent 4d88a30848
commit e2c8ddb8f7
3 changed files with 20 additions and 23 deletions

View File

@@ -337,7 +337,7 @@ public class UserREST {
return Response.status(Status.UNAUTHORIZED).entity("token expired.").build();
}
String passwd = RandomStringUtils.randomAlphanumeric(10);
String passwd = RandomStringUtils.secure().nextAlphanumeric(10);
byte[] encryptedPassword = encryptionService.getEncryptedPassword(passwd, user.getSalt());
user.setPassword(encryptedPassword);
if (StringUtils.isNotBlank(user.getApiKey())) {