obfuz/Editor/Encryption/IEncryptInstruction.cs

10 lines
206 B
C#
Raw Normal View History

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