Implement Argon2 password hashing and verification in user management

This commit is contained in:
fourbites
2025-08-18 23:52:41 +02:00
parent f0c392c331
commit 802ec201fa
4 changed files with 124 additions and 3 deletions
+6
View File
@@ -63,6 +63,12 @@
<version>2.5</version>
<scope>provided</scope>
</dependency>
<!-- https://mvnrepository.com/artifact/de.mkammerer/argon2-jvm -->
<dependency>
<groupId>de.mkammerer</groupId>
<artifactId>argon2-jvm</artifactId>
<version>2.12</version>
</dependency>
</dependencies>
<build>