Sprint 8 #43

Merged
csimonapastore merged 20 commits from sprints/8 into main 2025-06-21 01:11:03 +02:00
Showing only changes of commit 061ce4cb3d - Show all commits

View File

@@ -107,7 +107,7 @@ public class CryptoUtils_Tests
try
{
var salt = CryptUtils.GeneratePepper();
Assert.IsTrue(!String.IsNullOrEmpty(salt));
Assert.IsFalse(String.IsNullOrEmpty(salt));
}
catch (Exception ex)
{
@@ -123,7 +123,7 @@ public class CryptoUtils_Tests
{
var password = "P4ssw0rd@1!";
var pepper = CryptUtils.GeneratePepper();
Assert.IsTrue(!String.IsNullOrEmpty(pepper));
Assert.IsFalse(String.IsNullOrEmpty(pepper));
WebApplicationBuilder builder = WebApplication.CreateBuilder(Array.Empty<string>());
AppSettings appSettings = ProgramUtils.AddConfiguration(ref builder, System.AppDomain.CurrentDomain.BaseDirectory + "/JsonData");