ICertAdmin::GetCRL

The GetCRL method gets a pointer to the current certificate revocation list (CRL) for the certificate server.

[VB] BSTR GetCRL(
  BSTR strConfig,  
  long Flags       
);
 
[JAVA] java.lang.String GetCRL(
  java.lang.String strConfig,  
  int Flags                    
);
 
[C++] HRESULT GetCRL(
  BSTR const strConfig,  // in
  LONG Flags,            // in
  BSTR *pstrCRL          // out, return value
);
 

Parameters

[VB][JAVA][C++] strConfig
Points to a valid configuration string for the certificate server. See ICertConfig::GetConfig.
[VB][JAVA][C++] Flags
Specifies the format of the returned CRL. The value can be one of the following values.
CRL Format Flag Description
CR_OUT_BASE64HEADER BASE64 format with begin/end.
CR_OUT_BASE64 BASE64 format without begin/end.
CR_OUT_BINARY Binary format.

[C++] pstrCRL
Points to the return value. See Return Values.

Return Values

Returns the CRL.

QuickInfo

  Windows NT: Requires version 5.0 or later (or version 4.0 with the Windows NT 4.0 Option Pack).
  Windows: Unsupported.
  Windows CE: Unsupported.
  Header: Declared in certadm.h.
  Import Library: Use certidl.lib.