Minor fixes

This commit is contained in:
2025-03-04 00:55:30 +01:00
parent f73fe748ed
commit 78911eb877
2 changed files with 5 additions and 4 deletions

View File

@@ -9,7 +9,7 @@ public class CryptUtils
private readonly string secretKey;
private const int M = 16;
private const int N = 32;
private readonly NLog.Logger Logger = NLog.LogManager.GetCurrentClassLogger();
public CryptUtils(AppSettings appSettings)
{
secretKey = appSettings.EncryptionSettings?.Salt ?? String.Empty;