namespace Govor.Application.Authentication; public interface IPasswordHasher { string Hash(string password); bool Verify(string hashedPassword, string providedPassword); }