obfuz/Editor/Encryption/EncryptInstructionBase.cs

9 lines
267 B
C#
Raw Normal View History

2025-05-07 10:14:15 +08:00
namespace Obfuz.Encryption
{
public abstract class EncryptInstructionBase : IEncryptInstruction
{
public abstract int Encrypt(int value, int[] secretKey, int salt);
public abstract int Decrypt(int value, int[] secretKey, int salt);
}
}