obfuz/Editor/Encryption/VirtualMachine.cs

17 lines
389 B
C#
Raw Normal View History

2025-05-11 10:37:42 +08:00
namespace Obfuz.Encryption
{
public class VirtualMachine
{
public const int SecretKeyLength = 1024;
2025-05-11 10:49:04 +08:00
public readonly byte[] secretKey;
2025-05-11 10:37:42 +08:00
public readonly EncryptOpCode[] opCodes;
2025-05-11 10:49:04 +08:00
public VirtualMachine(byte[] secretKey, EncryptOpCode[] opCodes)
2025-05-11 10:37:42 +08:00
{
2025-05-11 10:49:04 +08:00
this.secretKey = secretKey;
2025-05-11 10:37:42 +08:00
this.opCodes = opCodes;
}
}
}