The CertSetCRLContextProperty function sets a property for the specified CRL context.
#include <wincrypt.h>
BOOL WINAPI CertSetCRLContextProperty(
PCCRL_CONTEXT pCrlContext, // in
DWORD dwPropId, // in
DWORD dwFlags, // in
void *pvData // in
);
For all the other PROP_IDs, pvData points to an encoded CRYPT_DATA_BLOB.
Important For all values of pwPropId, setting pvData to NULL deletes the property.
TRUE if the function succeeded. FALSE if the function failed.
GetLastError may be called to indicate the reason for any failure. This function uses the following error code:
If a property already exists, the old value is replaced.
See CertSetCertificateContextProperty.
Windows NT: Requires version 4.0 SP3 or later. Available also in IE 3.02 and later.
Windows: Requires Windows 95 OSR2 or later.
Windows CE: Unsupported.
Header: Declared in wincrypt.h.
Import Library: Use crypt32.lib.