CertCreateCRLContext (crypt32)
Last changed: anonymous

.
Summary
The CertCreateCRLContext function creates a certificate revocation list (CRL) context from an encoded CRL. The created context is not persisted to a certificate store. It makes a copy of the encoded CRL within the created context.

C# Signature:

[DllImport("CRYPT32.DLL", SetLastError=true)]
public static extern IntPtr CertCreateCRLContext(
    uint dwCertEncodingType,
    [In] byte[]  pbCrlEncoded,
    [In, Out] uint cbCrlEncoded);

VB Signature:

Declare Function CertCreateCRLContext Lib "crypt32.dll" (TODO) As TODO

User-Defined Types:

None.

Notes:

None.

Tips & Tricks:

Please add some!

Sample Code:

Please add some!

Alternative Managed API:

Do you know one? Please contribute it!

Documentation