ModernUO/Projects/Scripts/Accounting/IPasswordProtection.cs

8 lines
212 B
C#

namespace Server.Accounting
{
public interface IPasswordProtection
{
string EncryptPassword(string plainPassword);
bool ValidatePassword(string encryptedPassword, string plainPassword);
}
}