Historical Content Alert

This is a historical content for Windows NT 4.0 product and is presented for informative purposes only. All content in this directory is copyrighted and owned by Microsoft.

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.


Share this article: