Files
2014-12-24 03:28:51 +08:00

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
}
}