obfuz/Editor/EncryptionVM/IEncryptionInstruction.cs

16 lines
451 B
C#
Raw Normal View History

2025-05-11 12:53:24 +08:00
namespace Obfuz.EncryptionVM
2025-05-11 12:48:53 +08:00
{
public interface IEncryptionInstruction
{
int Encrypt(int value, int[] secretKey, int salt);
int Decrypt(int value, int[] secretKey, int salt);
}
public abstract class EncryptionInstructionBase : IEncryptionInstruction
{
public abstract int Encrypt(int value, int[] secretKey, int salt);
public abstract int Decrypt(int value, int[] secretKey, int salt);
}
}