obfuz/Editor/Encryption/IEncryptInstruction.cs

10 lines
206 B
C#

namespace Obfuz.Encryption
{
public interface IEncryptInstruction
{
int Encrypt(int value, int[] secretKey, int salt);
int Decrypt(int value, int[] secretKey, int salt);
}
}