SocialPub/PrivaPub/StaticServices/IPasswordHasher.cs

9 lines
187 B
C#
Raw Normal View History

2023-02-19 00:43:43 +01:00
namespace PrivaPub.StaticServices
2023-02-18 08:52:17 +01:00
{
public interface IPasswordHasher
{
string Hash(string password);
(bool verified, bool needsUpgrade) Check(string hash, string password);
}
}