13 lines
234 B
C#
13 lines
234 B
C#
using System;
|
|
|
|
namespace Strata.Base.Internal.Encryptors
|
|
{
|
|
|
|
public interface IPasswordEncryptionMethod
|
|
{
|
|
|
|
string Encode(string username, string anOrgPin, string aNewPassword, Guid aUserGUID, string aSalt);
|
|
|
|
}
|
|
|
|
} |