CRL_ENTRY structure (wincrypt.h)

The CRL_ENTRY structure contains information about a single revoked certificate. It is a member of a CRL_INFO structure.

Syntax

typedef struct _CRL_ENTRY {
  CRYPT_INTEGER_BLOB SerialNumber;
  FILETIME           RevocationDate;
  DWORD              cExtension;
  PCERT_EXTENSION    rgExtension;
} CRL_ENTRY, *PCRL_ENTRY;

Members

SerialNumber

A BLOB that contains the serial number of a revoked certificate.

Leading 0x00 or 0xFF bytes are removed. For more information, see CertCompareIntegerBlob.

RevocationDate

Date that the certificate was revoked. Time is UTC-time encoded as an eight-byte date/time precise to seconds with a two digit year (that is, YYMMDDHHMMSS plus 2 bytes). The date is interpreted as a date between the years 1968 and 2067.

cExtension

Number of elements in the rgExtension member array of extensions.

rgExtension

Array of pointers to CERT_EXTENSION structures, each providing information about the revoked certificate.

Requirements

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

See also

CERT_EXTENSION

CRL_INFO

CRYPT_INTEGER_BLOB