9 lines
227 B
C#

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