CERT_CONTEXT_EX

This structure is used to send certificate information to the ISAPI extension when the HSE_REQ_GET_CERT_INFO_EX value is set for the dwHSERRequest parameter of the ServerSupportFunction.

typedef struct _CERT_CONTEXT_EX  {

  CERT_CONTEXT CertContext;

  DWORD     cbAllocated;

  DWORD     dwCertificateFlags;

};

 

Members
CertContext
A CERT_CONTEXT structure.
cbAllocated
The number of bytes the extension has allocated for the certificate buffer in the CERT_CONTEXT structure.
dwCertificateFlags
A DWORD describing the certificate. Bit0 will be set to 1 if the client certificate is present and Bit1 will be set to 1 if the certification authority is invalid.
Remarks

For further information on the CERT_CONTEXT structure, see the CryptoAPI documentation in the Platform SDK.