I am trying to get CRL dist. points from cert, but it looks too complicated. 
I have done this:

SECItem distPoints;
SECStatus s = CERT_FindCertExtension(pCertContext, 
SEC_OID_X509_CRL_DIST_POINTS, &distPoints);

if ( rv != SECSuccess ) {
  return;
}

CERTCrlDistributionPoints * dps = CERT_DecodeCRLDistributionPoints(NULL, 
&distPoints);

But don't know how to continue. I need to extract crl dist. points that 
start with "http://";. How can I get it? 


_______________________________________________
mozilla-crypto mailing list
[email protected]
http://mail.mozilla.org/listinfo/mozilla-crypto

Reply via email to