Fixing user password generation/validation - wip

This commit is contained in:
2025-06-17 00:01:29 +02:00
parent 14d9b45413
commit 1877c29e68
9 changed files with 50 additions and 45 deletions

View File

@@ -3,7 +3,8 @@ namespace BasicDotnetTemplate.MainProject.Models.Settings;
public class EncryptionSettings
{
#nullable enable
public string? Secret { get; set; }
public string? Salt { get; set; }
public string? Pepper { get; set; }
public int? Iterations { get; set; }
#nullable disable
}