ModernUO/Projects/UOContent/Accounting/IPasswordProtection.cs
2020-05-09 12:55:56 -07:00

8 lines
212 B
C#

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