refactor(CodeGeneratorParams): DefaultTotpSecretKeyLength auf 20 setzen.

This commit is contained in:
Developer 02
2024-12-11 14:56:30 +01:00
parent c6fc665002
commit 556d02870e

View File

@@ -4,7 +4,8 @@
{ {
public string CharPool { get; init; } = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz01234567890123456789012345678901234567890123456789"; public string CharPool { get; init; } = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz01234567890123456789012345678901234567890123456789";
public int DefaultTotpSecretKeyLength { get; init; } = 32; //TODO: Increase the DefaultTotpSecretKeyLength (e.g. to 32) but make sure that the QR code is generated correctly and can be scanned by the authenticator.
public int DefaultTotpSecretKeyLength { get; init; } = 20;
public string TotpIssuer { get; init; } = "signFlow"; public string TotpIssuer { get; init; } = "signFlow";