obfuz/Editor/EncryptionVM/VirtualMachine.cs

17 lines
425 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
{
2025-05-11 12:53:24 +08:00
public class VirtualMachine
2025-05-11 12:48:53 +08:00
{
public const int SecretKeyLength = 1024;
public readonly int[] secretKey;
public readonly EncryptionInstructionWithOpCode[] opCodes;
2025-05-11 12:53:24 +08:00
public VirtualMachine(int[] secretKey, EncryptionInstructionWithOpCode[] opCodes)
2025-05-11 12:48:53 +08:00
{
this.secretKey = secretKey;
this.opCodes = opCodes;
}
}
}