ofbapi/OFBButte.Application/Users/IPasswordHasher.cs

13 lines
276 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace OFBButte.Application.Users
{
public interface IPasswordHasher
{
string HashPassword(string password);
bool VerifyPassword(string hashedPassword, string password);
}
}