8 lines
212 B
C#
8 lines
212 B
C#
namespace Server.Accounting
|
|
{
|
|
public interface IPasswordProtection
|
|
{
|
|
string EncryptPassword(string plainPassword);
|
|
bool ValidatePassword(string encryptedPassword, string plainPassword);
|
|
}
|
|
}
|