obfuz/Plugins/dnlib/Protection/EncryptionContext.cs

15 lines
281 B
C#
Raw Normal View History

2025-04-08 20:31:44 +08:00
using System;
using System.Collections.Generic;
using System.Text;
namespace dnlib.Protection {
internal class EncryptionContext {
public const int SmallSegmentSize = 0x10;
public const int BigSegmentSize = 0x100;
public static IEncryption Encryption { get; set; }
}
}