mirror of
https://github.com/Cleanuparr/Cleanuparr.git
synced 2026-03-24 17:13:41 -04:00
11 lines
227 B
C#
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);
|
|
}
|