mirror of
https://github.com/modernuo/ModernUO
synced 2026-08-11 22:23:06 -04:00
8 lines
218 B
C#
8 lines
218 B
C#
namespace Server.Accounting
|
|
{
|
|
public interface IPasswordProtection
|
|
{
|
|
string EncryptPassword(string plainPassword);
|
|
bool ValidatePassword(string encryptedPassword, string plainPassword);
|
|
}
|
|
}
|