CertDuplicateCRLContext function (wincrypt.h)

The CertDuplicateCRLContext function duplicates a certificate revocation list (CRL) context by incrementing its reference count.

Syntax

PCCRL_CONTEXT CertDuplicateCRLContext(
  [in] PCCRL_CONTEXT pCrlContext
);

Parameters

[in] pCrlContext

A pointer to the CRL_CONTEXT structure for which the reference count is being incremented.

Return value

Currently, a copy is not made of the context, and the returned context is the same as the context that was input. If the pointer passed into this function is NULL, NULL is returned.

Requirements

Requirement Value
Minimum supported client Windows XP [desktop apps | UWP apps]
Minimum supported server Windows Server 2003 [desktop apps | UWP apps]
Target Platform Windows
Header wincrypt.h
Library Crypt32.lib
DLL Crypt32.dll

See also

CRL_CONTEXT

Certificate Revocation List Functions