9 lines
187 B
C#
9 lines
187 B
C#
namespace PrivaPub.StaticServices
|
|
{
|
|
public interface IPasswordHasher
|
|
{
|
|
string Hash(string password);
|
|
|
|
(bool verified, bool needsUpgrade) Check(string hash, string password);
|
|
}
|
|
} |