using ACMESharp.Authorizations; using System; namespace PKISharp.WACS { /// /// Execution flags to enable/disable certain functions /// for different types of runs /// [Flags] public enum RunLevel { Unattended = 1, Interactive = 2, Simple = 4, Advanced = 8, Test = 16, Import = 32, ForceRenew = 64, IgnoreCache = 128 } public static class Constants { public const int MaxNames = 100; public const string Dns01ChallengeType = Dns01ChallengeValidationDetails.Dns01ChallengeType; public const string Http01ChallengeType = Http01ChallengeValidationDetails.Http01ChallengeType; public const string TlsAlpn01ChallengeType = TlsAlpn01ChallengeValidationDetails.TlsAlpn01ChallengeType; } }