You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

27 lines
738 B

namespace com.hitrust.b2b.Security.Certificates
{
using System;
[Flags]
public enum VerificationFlags
{
AllowTestroot = 0x8000,
AllowUnknownCA = 0x10,
IgnoreAllRevUnknown = 0xf00,
IgnoreAllTimeChecks = 7,
IgnoreCARevUnknown = 0x400,
IgnoreCtlTimeNotValid = 2,
IgnoreEndRevUnknown = 0x100,
IgnoreInvalidBasicContraints = 8,
IgnoreInvalidName = 0x40,
IgnoreInvalidPolicy = 0x80,
IgnoreRootRevUnknown = 0x800,
IgnoreSignerRevUnknown = 0x200,
IgnoreTimeNotNested = 4,
IgnoreTimeNotValid = 1,
IgnoreWrongUsage = 0x20,
None = 0,
TrustTestroot = 0x4000
}
}