CertChainFindByIssuerCallback callback function
The CertChainFindByIssuerCallback function is an application-defined callback function that allows the application to filter certificates that might be added to the certificate chain. A pointer to this function is provided in the pfnFindCallback member of the CERT_CHAIN_FIND_BY_ISSUER_PARA structure.
Syntax
BOOL CertChainFindByIssuerCallback( _In_ PCCERT_CONTEXT pCert, _In_ void *pvFindArg ); typedef void (*PFN_CERT_CHAIN_FIND_BY_ISSUER_CALLBACK)();
Parameters
- pCert [in]
-
A pointer to a CERT_CONTEXT structure that contains the certificate in question.
- pvFindArg [in]
-
A pointer to an application-defined value. This is the same value that was passed in the pvFindArg member of the CERT_CHAIN_FIND_BY_ISSUER_PARA structure.
Return value
Return TRUE to create a chain for the certificate specified in the pCert parameter, or FALSE otherwise.
Requirements
|
Minimum supported client |
Windows XP [desktop apps only] |
|---|---|
|
Minimum supported server |
Windows Server 2003 [desktop apps only] |
|
Header |
|
See also