Table of Contents

Enum AuthenticodeRevocationPolicy

Namespace
Utils.Reflection.ProcessIsolation
Assembly
Utils.Reflection.dll

Controls whether and how certificate revocation is verified during an Authenticode check.

public enum AuthenticodeRevocationPolicy
Extension Methods

Fields

CacheOnly = 1

Revocation is checked against locally cached CRL and OCSP data only; no network request is made. The check succeeds when the cache is fresh, and Revocation is Offline when the local cache is absent or stale.

None = 0

No revocation check is performed. This is the fastest option but will accept a file signed with a compromised or expired certificate.

Online = 2

Revocation is checked online (CRL/OCSP). A live revocation download is attempted; when the revocation server cannot be reached, Revocation is Offline rather than a hard failure.