modernuo/Projects/UOContent/Accounting/IPasswordProtection.cs
2020-08-27 18:30:38 -07:00

8 lines
218 B
C#

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