mirror of
https://github.com/aaronpo97/the-biergarten-app.git
synced 2026-06-01 01:54:00 +00:00
8 lines
185 B
C#
8 lines
185 B
C#
namespace Infrastructure.PasswordHashing;
|
|
|
|
public interface IPasswordInfrastructure
|
|
{
|
|
public string Hash(string password);
|
|
public bool Verify(string password, string stored);
|
|
}
|