obfuz/Editor/Encryption/EncryptionVirtualMachine.cs

17 lines
443 B
C#

namespace Obfuz.Encryption
{
public class EncryptionVirtualMachine
{
public const int SecretKeyLength = 1024;
public readonly int[] secretKey;
public readonly EncryptionInstructionWithOpCode[] opCodes;
public EncryptionVirtualMachine(int[] secretKey, EncryptionInstructionWithOpCode[] opCodes)
{
this.secretKey = secretKey;
this.opCodes = opCodes;
}
}
}