Type a page name and press Enter. You'll jump to the page if it exists, or you can create it if it doesn't.
To create a page in a module other than crypt32, prefix the name with the module name and a period.
if(! CertVerifyCRLRevocation(0x00010001, // X509_ASN_ENCODING | PKCS_7_ASN_ENCODING
certCtx.pCertInfo, 1, arrCrlInf))
{
// Certificate is in CRL
}
else
{
// Certificate is not in CRL
}
Alternative Managed API:
Do you know one? Please contribute it!
The CertVerifyCRLRevocation function check a CRL to determine whether a subject's certificate has or has not been revoked. The new Certificate Chain Verification Functions are recommended instead of the use of this function.
3/16/2007 7:39:37 AM - flyhippo@flyhippo.org-194.186.67.226
The CertFindCertificateInCRL function search the CRL's list of entries for the specified certificate
3/16/2007 7:39:26 AM - anonymous
Please edit this page!
Do you have...
helpful tips or sample code to share for using this API in managed code?
corrections to the existing content?
variations of the signature you want to share?
additional languages you want to include?
Select "Edit This Page" on the right hand toolbar and edit it! Or add new pages containing supporting types needed for this API (structures, delegates, and more).