Adding SHA256 password encryption and password verify

This commit is contained in:
2025-03-11 23:36:49 +01:00
parent 78911eb877
commit 0b354988fd
14 changed files with 389 additions and 18 deletions

View File

@@ -4,5 +4,6 @@ public class EncryptionSettings
{
#nullable enable
public string? Salt { get; set; }
public string? Pepper { get; set; }
#nullable disable
}