Files
Cleanuparr/code/backend/Cleanuparr.Infrastructure/Features/Auth/IPasswordService.cs

11 lines
227 B
C#

namespace Cleanuparr.Infrastructure.Features.Auth;
public interface IPasswordService
{
string DummyHash { get; }
string HashPassword(string password);
bool VerifyPassword(string password, string hash);
}