mirror of
https://github.com/yck1509/ConfuserEx
synced 2026-06-08 18:29:44 +00:00
23 lines
660 B
C#
23 lines
660 B
C#
using System;
|
|
|
|
namespace Confuser.Core {
|
|
/// <summary>
|
|
/// Various presets of protections.
|
|
/// </summary>
|
|
public enum ProtectionPreset {
|
|
/// <summary> The protection does not belong to any preset. </summary>
|
|
None = 0,
|
|
|
|
/// <summary> The protection provides basic security. </summary>
|
|
Minimum = 1,
|
|
|
|
/// <summary> The protection provides normal security for public release. </summary>
|
|
Normal = 2,
|
|
|
|
/// <summary> The protection provides better security with observable performance impact. </summary>
|
|
Aggressive = 3,
|
|
|
|
/// <summary> The protection provides strongest security with possible incompatibility. </summary>
|
|
Maximum = 4
|
|
}
|
|
} |