17 lines
425 B
C#
17 lines
425 B
C#
namespace Obfuz.EncryptionVM
|
|
{
|
|
public class VirtualMachine
|
|
{
|
|
public const int SecretKeyLength = 1024;
|
|
|
|
public readonly int[] secretKey;
|
|
public readonly EncryptionInstructionWithOpCode[] opCodes;
|
|
|
|
public VirtualMachine(int[] secretKey, EncryptionInstructionWithOpCode[] opCodes)
|
|
{
|
|
this.secretKey = secretKey;
|
|
this.opCodes = opCodes;
|
|
}
|
|
}
|
|
}
|