9 lines
223 B
C#
9 lines
223 B
C#
namespace SharpUI.Source.Common.Util.Encryption
|
|
{
|
|
public interface IPasswordUtil
|
|
{
|
|
string PasswordHash(string password);
|
|
|
|
bool IsPasswordValid(string password, string hashedPassword);
|
|
}
|
|
} |