namespace EnotaryoPH.Web.Common.Services { public interface IPasswordService { string HashPassword(string password); bool VerifyHashedPassword(string hashedPassword, string providedPassword); } }