Added 2FA

This commit is contained in:
2026-08-08 15:09:26 +02:00
parent b5de4d6ac7
commit 9f311ab4ae
19 changed files with 1341 additions and 1 deletions
+12
View File
@@ -61,6 +61,18 @@
<groupId>com.h2database</groupId>
<artifactId>h2</artifactId>
</dependency>
<!-- Base32 codec for TOTP shared secrets (version managed by the Spring Boot parent) -->
<dependency>
<groupId>commons-codec</groupId>
<artifactId>commons-codec</artifactId>
</dependency>
<!-- QR code generation for TOTP enrollment. Only zxing:core is needed; the PNG is written
with ImageIO, which avoids pulling in zxing:javase and its jcommander/jai dependencies. -->
<dependency>
<groupId>com.google.zxing</groupId>
<artifactId>core</artifactId>
<version>3.5.3</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>