obfuz/Editor/Emit/DataNodes/StringFromEncryptedBytesNod...

20 lines
464 B
C#
Raw Normal View History

2025-04-20 14:23:40 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Obfuz.Emit
2025-04-20 14:23:40 +08:00
{
2025-04-21 08:58:25 +08:00
public class StringFromEncryptedBytesNode : DataNodeAny
2025-04-20 14:23:40 +08:00
{
public override void Compile(CompileContext ctx)
{
2025-04-21 08:58:25 +08:00
// only support Int32, int64, bytes.
// string can only create from StringFromBytesNode
// x = memcpy array.GetRange(index, length);
2025-04-20 14:23:40 +08:00
}
}
}