Files
the-biergarten-app/web/backend/Infrastructure/Infrastructure.PasswordHashing/IPasswordInfrastructure.cs
2026-04-27 18:47:39 -04:00

8 lines
185 B
C#

namespace Infrastructure.PasswordHashing;
public interface IPasswordInfrastructure
{
public string Hash(string password);
public bool Verify(string password, string stored);
}