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.
 
 

19 lines
554 B

namespace com.hitrust.Security.Certificates
{
using System;
public enum CertificateChainOptions
{
CacheOnlyUrlRetrieval = 4,
Default = 0,
DisableAuthRootAutoUpdate = 0x100,
DisablePass1QualityFiltering = 0x40,
ReturnLowerQualityContexts = 0x80,
RevocationCacheEndCert = 1,
RevocationCheckCacheOnly = -2147483648,
RevocationCheckChain = 0x20000000,
RevocationCheckChainExcludeRoot = 0x40000000,
RevocationCheckEndCert = 0x10000000
}
}