CERT_REVOCATION_CRL_INFO structure (wincrypt.h)

Contains information updated by a certificate revocation list (CRL) revocation type handler. The CERT_REVOCATION_CRL_INFO structure is used with both base and delta CRLs.

Syntax

typedef struct _CERT_REVOCATION_CRL_INFO {
  DWORD         cbSize;
  PCCRL_CONTEXT pBaseCrlContext;
  PCCRL_CONTEXT pDeltaCrlContext;
  PCRL_ENTRY    pCrlEntry;
  BOOL          fDeltaCrlEntry;
} CERT_REVOCATION_CRL_INFO, *PCERT_REVOCATION_CRL_INFO;

Members

cbSize

Size, in bytes, of the structure.

pBaseCrlContext

pDeltaCrlContext

pCrlEntry

A pointer to an entry in either the base CRL or the delta CRL.

fDeltaCrlEntry

TRUE if pCrlEntry points to an entry in the delta CRL. FALSE if pCrlEntry points to an entry in the base CRL.

Requirements

Requirement Value
Minimum supported client Windows XP [desktop apps only]
Minimum supported server Windows Server 2003 [desktop apps only]
Header wincrypt.h