move passwordhasher to helpers

This commit is contained in:
Вячеслав 2025-05-30 23:19:50 +05:00
parent 153f38d6b2
commit db012aed92

View file

@ -1,7 +1,7 @@
using System.Security.Cryptography; using System.Security.Cryptography;
using SurveyBackend.Core.Services; using SurveyBackend.Core.Services;
namespace SurveyBackend.Services.Services; namespace SurveyBackend.Services.Helpers;
public class Sha256PasswordHasher : IPasswordHasher public class Sha256PasswordHasher : IPasswordHasher
{ {