namespace AMREZ.EOP.Abstractions.Security; public interface IPasswordHasher { bool Verify(string plain, string hash); string Hash(string plain); }