Fixing security hotspots + issues

This commit is contained in:
2025-06-17 19:47:56 +02:00
parent ad1909ef57
commit 11a9696bdd
7 changed files with 13 additions and 12 deletions

View File

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