OCSP_REQUEST_ENTRY structure (wincrypt.h)

The OCSP_REQUEST_ENTRY structure contains information about a single certificate in an online certificate status protocol (OCSP) request. This structure populates the OCSP_REQUEST_INFO rgRequestEntry member.

Syntax

typedef struct _OCSP_REQUEST_ENTRY {
  OCSP_CERT_ID    CertId;
  DWORD           cExtension;
  PCERT_EXTENSION rgExtension;
} OCSP_REQUEST_ENTRY, *POCSP_REQUEST_ENTRY;

Members

CertId

An OCSP_CERT_ID structure that specifies the target certificate.

cExtension

The number of elements in the rgExtension array.

rgExtension

An array of pointers to CERT_EXTENSION structures, each of which contains information about the CertId certificate.

Requirements

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

See also

CERT_EXTENSION

OCSP_CERT_ID

OCSP_REQUEST_INFO

RFC 2560 Online Certificate Status Protocol