CERT_REVOCATION_PARA

The CERT_REVOCATION_PARA structure may optionally be passed to CertVerifyRevocation to assist in finding the issuer of the context to be verified.

typedef struct _CERT_REVOCATION_PARA {
    DWORD                   cbSize;
    PCCERT_CONTEXT          pIssuerCert;
    DWORD                   cCertStore;
    HCERTSTORE              *rgCertStore;
} CERT_REVOCATION_PARA, *PCERT_REVOCATION_PARA;
 

Members

cbSize
The count of bytes in this data structure.
pIssuerCert
When specified, pIssuerCert is the issuer of rgpvContext[cContext - 1] (in the CertVerifyRevocation parameter list).
cCertStore
The number of elements in the array rgCertStore.
rgCertStore
An array of certificate store handles. When rgCertStore is used, these stores may contain an issuer certificate.

See Also

CertVerifyRevocation