2 * Copyright (c) 2002,2011-2012,2014-2015 Apple Inc. All Rights Reserved.
4 * The contents of this file constitute Original Code as defined in and are
5 * subject to the Apple Public Source License Version 1.2 (the 'License').
6 * You may not use this file except in compliance with the License. Please obtain
7 * a copy of the License at http://www.apple.com/publicsource and read it before
10 * This Original Code and all software distributed under the License are
11 * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESS
12 * OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES, INCLUDING WITHOUT
13 * LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
14 * PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. Please see the License for the
15 * specific language governing rights and limitations under the License.
20 * TPCrlInfo.h - TP's private CRL and CRL group
24 #include "TPCrlInfo.h"
25 #include "tpdebugging.h"
26 #include "certGroupUtils.h"
27 #include "tpCrlVerify.h"
28 #include "tpPolicies.h"
30 #include <Security/cssmapi.h>
31 #include <Security/x509defs.h>
32 #include <Security/oidscert.h>
33 #include <Security/oidscrl.h>
34 #include <security_cdsa_utilities/cssmerrors.h>
35 #include <string.h> /* for memcmp */
36 #include <Security/cssmapple.h>
39 * Replacement for CSSM_CL_CrlGetFirstCachedFieldValue for use with
40 * TPCrlItemInfo's generic getFirstCachedField mechanism.
42 static CSSM_RETURN
tpGetFirstCachedFieldValue (CSSM_CL_HANDLE CLHandle
,
43 CSSM_HANDLE CrlHandle
,
44 const CSSM_OID
*CrlField
,
45 CSSM_HANDLE_PTR ResultsHandle
,
46 uint32
*NumberOfMatchedFields
,
49 return CSSM_CL_CrlGetFirstCachedFieldValue(CLHandle
,
51 NULL
, // const CSSM_DATA *CrlRecordIndex,
54 NumberOfMatchedFields
,
58 static const TPClItemCalls tpCrlClCalls
=
60 tpGetFirstCachedFieldValue
,
61 CSSM_CL_CrlAbortQuery
,
63 CSSM_CL_CrlAbortCache
,
65 &CSSMOID_X509V1CRLThisUpdate
,
66 &CSSMOID_X509V1CRLNextUpdate
,
67 CSSMERR_TP_INVALID_CRL_POINTER
,
68 CSSMERR_APPLETP_CRL_EXPIRED
,
69 CSSMERR_APPLETP_CRL_NOT_VALID_YET
74 * No default constructor - this is the only way.
75 * This caches the cert and fetches subjectName and issuerName
76 * to ensure the incoming certData is well-constructed.
79 CSSM_CL_HANDLE clHand
,
80 CSSM_CSP_HANDLE cspHand
,
81 const CSSM_DATA
*crlData
,
82 TPItemCopy copyCrlData
, // true: we copy, we free
83 // false - caller owns
84 const char *verifyTime
) // = NULL
86 : TPClItemInfo(clHand
, cspHand
, tpCrlClCalls
, crlData
,
87 copyCrlData
, verifyTime
),
89 mFromWhere(CFW_Nowhere
),
91 mCrlFieldToFree(NULL
),
92 mVerifyState(CVS_Unknown
),
93 mVerifyError(CSSMERR_TP_INTERNAL_ERROR
)
100 /* fetch parsed CRL */
101 crtn
= fetchField(&CSSMOID_X509V2CRLSignedCrlCStruct
, &mCrlFieldToFree
);
105 CssmError::throwMe(crtn
);
107 if(mCrlFieldToFree
->Length
!= sizeof(CSSM_X509_SIGNED_CRL
)) {
108 tpErrorLog("fetchField(SignedCrlCStruct) length error\n");
110 CssmError::throwMe(CSSMERR_TP_INTERNAL_ERROR
);
112 mX509Crl
= (CSSM_X509_SIGNED_CRL
*)mCrlFieldToFree
->Data
;
113 /* any other other commonly used fields? */
116 TPCrlInfo::~TPCrlInfo()
121 void TPCrlInfo::releaseResources()
123 if(mCrlFieldToFree
) {
124 freeField(&CSSMOID_X509V2CRLSignedCrlCStruct
, mCrlFieldToFree
);
125 mCrlFieldToFree
= NULL
;
128 Allocator::standard().free(mUri
.Data
);
132 TPClItemInfo::releaseResources();
135 void TPCrlInfo::uri(const CSSM_DATA
&uri
)
137 tpCopyCssmData(Allocator::standard(), &uri
, &mUri
);
141 * List of extensions we understand and can accept as critical.
143 static const CSSM_OID
*const TPGoodCrlExtens
[] =
146 /* Note NOT CSSMOID_DeltaCrlIndicator! That's fatal */
149 &CSSMOID_IssuingDistributionPoint
,
150 &CSSMOID_HoldInstructionCode
,
151 &CSSMOID_InvalidityDate
,
152 &CSSMOID_AuthorityKeyIdentifier
,
153 &CSSMOID_SubjectAltName
,
154 &CSSMOID_IssuerAltName
157 #define NUM_KNOWN_EXTENS (sizeof(TPGoodCrlExtens) / sizeof(CSSM_OID_PTR))
160 * Do our best to understand all the entries in a CSSM_X509_EXTENSIONS,
161 * which may be per-CRL or per-entry.
163 * For now, we just ensure that for every critical extension,
164 * we actually understand it and can deal it.
166 CSSM_RETURN
TPCrlInfo::parseExtensions(
167 TPVerifyContext
&vfyCtx
,
169 uint32 entryIndex
, // if isPerEntry
170 const CSSM_X509_EXTENSIONS
&extens
,
171 TPCertInfo
*forCert
, // optional
172 bool &isIndirectCrl
) // RETURNED
174 isIndirectCrl
= false;
175 for(uint32 dex
=0; dex
<extens
.numberOfExtensions
; dex
++) {
176 CSSM_X509_EXTENSION_PTR exten
= &extens
.extensions
[dex
];
177 if(exten
->critical
) {
178 /* critical: is it in our list of understood extensions? */
180 for(i
=0; i
<NUM_KNOWN_EXTENS
; i
++) {
181 if(tpCompareOids(&exten
->extnId
, TPGoodCrlExtens
[i
])) {
182 /* we're cool with this one */
186 if(i
== NUM_KNOWN_EXTENS
) {
187 tpCrlDebug("parseExtensions: Unknown Critical Extension\n");
188 return CSSMERR_APPLETP_UNKNOWN_CRL_EXTEN
;
192 /* Specific extension handling. */
193 if(tpCompareOids(&exten
->extnId
,
194 &CSSMOID_IssuingDistributionPoint
)) {
196 * If this assertion fails, we're out of sync with the CL
198 assert(exten
->format
== CSSM_X509_DATAFORMAT_PARSED
);
199 CE_IssuingDistributionPoint
*idp
=
200 (CE_IssuingDistributionPoint
*)
201 exten
->value
.parsedValue
;
204 * Snag indirectCrl flag for caller in any case
206 if(idp
->indirectCrlPresent
&& idp
->indirectCrl
) {
207 isIndirectCrl
= true;
209 if(forCert
!= NULL
) {
210 /* If no target cert, i.e., we're just verifying a CRL,
211 * skip the remaining IDP checks. */
213 /* verify onlyCACerts/onlyUserCerts */
215 if(forCert
->isLeaf() &&
216 !(vfyCtx
.actionFlags
& CSSM_TP_ACTION_LEAF_IS_CA
)) {
222 if((idp
->onlyUserCertsPresent
) && (idp
->onlyUserCerts
)) {
224 tpCrlDebug("parseExtensions: onlyUserCerts, "
226 return CSSMERR_APPLETP_IDP_FAIL
;
229 if((idp
->onlyCACertsPresent
) && (idp
->onlyCACerts
)) {
231 tpCrlDebug("parseExtensions: onlyCACerts, leaf\n");
232 return CSSMERR_APPLETP_IDP_FAIL
;
236 } /* have target cert */
243 * The heavyweight "perform full verification of this CRL" op.
244 * Must verify to an anchor cert in tpVerifyContext or via
245 * Trust Settings if so enabled.
246 * Intermediate certs can come from signerCerts or dBList.
248 CSSM_RETURN
TPCrlInfo::verifyWithContext(
249 TPVerifyContext
&tpVerifyContext
,
250 TPCertInfo
*forCert
, // optional
254 * Step 1: this CRL must be current. Caller might have re-evaluated
255 * expired/notValidYet since our construction via calculateCurrent().
258 return CSSMERR_APPLETP_CRL_EXPIRED
;
260 if(isNotValidYet()) {
261 return CSSMERR_APPLETP_CRL_NOT_VALID_YET
;
264 /* subsequent verify state is cached */
265 switch(mVerifyState
) {
273 tpErrorLog("verifyWithContext: bad verifyState\n");
274 return CSSMERR_TP_INTERNAL_ERROR
;
278 * Step 2: parse & understand all critical CRL extensions.
282 crtn
= parseExtensions(tpVerifyContext
,
285 mX509Crl
->tbsCertList
.extensions
,
289 mVerifyState
= CVS_Bad
;
290 if(!forCert
|| forCert
->addStatusCode(crtn
)) {
295 CSSM_X509_REVOKED_CERT_LIST_PTR revoked
=
296 mX509Crl
->tbsCertList
.revokedCertificates
;
297 if(revoked
!= NULL
) {
298 for(uint32 dex
=0; dex
<revoked
->numberOfRevokedCertEntries
; dex
++) {
299 bool dummyIsIndirect
; // can't be set here
300 crtn
= parseExtensions(tpVerifyContext
,
303 revoked
->revokedCertEntry
[dex
].extensions
,
307 if(!forCert
|| forCert
->addStatusCode(crtn
)) {
308 mVerifyState
= CVS_Bad
;
316 * Step 3: obtain a fully verified cert chain which verifies this CRL.
318 CSSM_BOOL verifiedToRoot
;
319 CSSM_BOOL verifiedToAnchor
;
320 CSSM_BOOL verifiedViaTrustSetting
;
322 TPCertGroup
outCertGroup(tpVerifyContext
.alloc
,
323 TGO_Caller
); // CRLs owned by inCertGroup
325 /* set up for disposal of TPCertInfos created by
326 * CertGroupConstructPriv */
327 TPCertGroup
certsToBeFreed(tpVerifyContext
.alloc
, TGO_Group
);
329 if(tpVerifyContext
.signerCerts
) {
330 /* start from scratch with this group */
331 tpVerifyContext
.signerCerts
->setAllUnused();
333 crtn
= outCertGroup
.buildCertGroup(
334 *this, // subject item
335 tpVerifyContext
.signerCerts
, // inCertGroup, optional
336 tpVerifyContext
.dbList
, // optional
337 tpVerifyContext
.clHand
,
338 tpVerifyContext
.cspHand
,
339 tpVerifyContext
.verifyTime
,
340 tpVerifyContext
.numAnchorCerts
,
341 tpVerifyContext
.anchorCerts
,
343 &tpVerifyContext
.gatheredCerts
,
344 CSSM_FALSE
, // subjectIsInGroup
345 tpVerifyContext
.actionFlags
,
346 tpVerifyContext
.policyOid
,
347 tpVerifyContext
.policyStr
,
348 tpVerifyContext
.policyStrLen
,
349 kSecTrustSettingsKeyUseSignRevocation
,
352 verifiedViaTrustSetting
);
353 /* subsequent errors to errOut: */
356 tpCrlDebug("TPCrlInfo::verifyWithContext buildCertGroup failure "
357 "index %u", index());
358 if(!forCert
|| forCert
->addStatusCode(crtn
)) {
362 if (verifiedToRoot
&& (tpVerifyContext
.actionFlags
& CSSM_TP_ACTION_IMPLICIT_ANCHORS
))
363 verifiedToAnchor
= CSSM_TRUE
;
364 if(!verifiedToAnchor
&& !verifiedViaTrustSetting
) {
367 /* verified to root which is not an anchor */
368 tpCrlDebug("TPCrlInfo::verifyWithContext root, no anchor, "
369 "index %u", index());
370 crtn
= CSSMERR_APPLETP_CRL_INVALID_ANCHOR_CERT
;
373 /* partial chain, no root, not verifiable by anchor */
374 tpCrlDebug("TPCrlInfo::verifyWithContext no root, no anchor, "
375 "index %u", index());
376 crtn
= CSSMERR_APPLETP_CRL_NOT_TRUSTED
;
378 if(!forCert
|| forCert
->addStatusCode(crtn
)) {
379 mVerifyState
= CVS_Bad
;
385 * Step 4: policy verification on the returned cert group
386 * We need to (temporarily) assert the "leaf cert is a CA" flag
389 outCertGroup
.certAtIndex(0)->isLeaf(true);
390 crtn
= tp_policyVerify(kCrlPolicy
,
391 tpVerifyContext
.alloc
,
392 tpVerifyContext
.clHand
,
393 tpVerifyContext
.cspHand
,
396 verifiedViaTrustSetting
,
397 tpVerifyContext
.actionFlags
| CSSM_TP_ACTION_LEAF_IS_CA
,
399 NULL
); // policyOpts, not currently used
401 tpCrlDebug(" ...verifyWithContext policy FAILURE CRL %u",
403 if(!forCert
|| forCert
->addStatusCode(CSSMERR_APPLETP_CRL_POLICY_FAIL
)) {
404 mVerifyState
= CVS_Bad
;
410 * Step 5: recursively perform CRL verification on the certs
411 * gathered to verify this CRL.
412 * Only performed if this CRL is an indirect CRL or the caller
413 * explicitly told us to do this (i.e., caller is verifying a
414 * CRL, not a cert chain).
416 if(isIndirectCrl
|| doCrlVerify
) {
417 tpCrlDebug("verifyWithContext recursing to "
418 "tpVerifyCertGroupWithCrls");
419 crtn
= tpVerifyCertGroupWithCrls(tpVerifyContext
,
422 tpCrlDebug(" ...verifyWithContext CRL reverify FAILURE CRL %u",
424 if(!forCert
|| forCert
->addStatusCode(crtn
)) {
425 mVerifyState
= CVS_Bad
;
431 tpCrlDebug(" ...verifyWithContext CRL %u SUCCESS", index());
432 mVerifyState
= CVS_Good
;
434 /* we own these, we free the DB records */
435 certsToBeFreed
.freeDbRecords();
440 * Wrapper for verifyWithContext for use when evaluating a CRL
441 * "now" instead of at the time in TPVerifyContext.verifyTime.
442 * In this case, on entry, TPVerifyContext.verifyTime is the
443 * time at which a cert is being evaluated.
445 CSSM_RETURN
TPCrlInfo::verifyWithContextNow(
446 TPVerifyContext
&tpVerifyContext
,
447 TPCertInfo
*forCert
, // optional
450 CSSM_TIMESTRING ctxTime
= tpVerifyContext
.verifyTime
;
451 CSSM_RETURN crtn
= verifyWithContext(tpVerifyContext
, forCert
, doCrlVerify
);
452 tpVerifyContext
.verifyTime
= ctxTime
;
457 * Do I have the same issuer as the specified subject cert? Returns
460 bool TPCrlInfo::hasSameIssuer(
461 const TPCertInfo
&subject
)
463 assert(subject
.issuerName() != NULL
);
464 if(tpCompareCssmData(issuerName(), subject
.issuerName())) {
473 * Determine if specified cert has been revoked as of the
474 * provided time; a NULL timestring indicates "now".
476 * Assumes current CRL is verified good and that issuer names of
477 * the cert and CRL match.
479 * This duplicates similar logic in the CL, but to avoid re-parsing
480 * the subject cert (which we have parsed and cached), we just do it
483 * Possible errors are
484 * CSSMERR_TP_CERT_REVOKED
485 * CSSMERR_TP_CERT_SUSPENDED
488 * Error status is added to subjectCert.
490 CSSM_RETURN
TPCrlInfo::isCertRevoked(
491 TPCertInfo
&subjectCert
,
492 CSSM_TIMESTRING verifyTime
)
494 assert(mVerifyState
== CVS_Good
);
495 CSSM_X509_TBS_CERTLIST_PTR tbs
= &mX509Crl
->tbsCertList
;
497 /* trivial case - empty CRL */
498 if((tbs
->revokedCertificates
== NULL
) ||
499 (tbs
->revokedCertificates
->numberOfRevokedCertEntries
== 0)) {
500 tpCrlDebug(" isCertRevoked: empty CRL at index %u", index());
504 /* is subject cert's serial number in this CRL? */
505 CSSM_DATA_PTR subjSerial
= NULL
;
507 crtn
= subjectCert
.fetchField(&CSSMOID_X509V1SerialNumber
, &subjSerial
);
509 /* should never happen */
510 tpErrorLog("TPCrlInfo:isCertRevoked: error fetching serial number\n");
511 if(subjectCert
.addStatusCode(crtn
)) {
515 /* allowed error - can't proceed; punt with success */
519 /* subsequent errors to errOut: */
521 uint32 numEntries
= tbs
->revokedCertificates
->numberOfRevokedCertEntries
;
522 CSSM_X509_REVOKED_CERT_ENTRY_PTR entries
=
523 tbs
->revokedCertificates
->revokedCertEntry
;
525 CFDateRef cfRevokedTime
= NULL
;
526 CFDateRef cfVerifyTime
= NULL
;
528 for(uint32 dex
=0; dex
<numEntries
; dex
++) {
529 CSSM_X509_REVOKED_CERT_ENTRY_PTR entry
= &entries
[dex
];
530 if(tpCompareCssmData(subjSerial
, &entry
->certificateSerialNumber
)) {
532 * It's in there. Compare revocation time in the CRL to
533 * our caller-specified verifyTime.
535 CSSM_X509_TIME_PTR xTime
= &entry
->revocationDate
;
537 rtn
= timeStringToCfDate((char *)xTime
->time
.Data
, (unsigned)xTime
->time
.Length
,
540 tpErrorLog("fetchNotBeforeAfter: malformed revocationDate\n");
543 if(verifyTime
!= NULL
) {
544 rtn
= timeStringToCfDate((char *)verifyTime
, (unsigned)strlen(verifyTime
),
548 /* verify right now */
549 cfVerifyTime
= CFDateCreate(NULL
, CFAbsoluteTimeGetCurrent());
551 if((rtn
== 0) && cfVerifyTime
!= NULL
) {
552 CFComparisonResult res
= CFDateCompare(cfVerifyTime
, cfRevokedTime
, NULL
);
553 if(res
== kCFCompareLessThan
) {
554 /* cfVerifyTime < cfRevokedTime; I guess this one's OK */
555 tpCrlDebug(" isCertRevoked: cert %u NOT YET REVOKED by CRL %u",
556 subjectCert
.index(), index());
563 * REQUIRED TBD: parse the entry's extensions, specifically to
564 * get a reason. This will entail a bunch of new TP/cert specific
566 * For now, just flag it revoked.
568 crtn
= CSSMERR_TP_CERT_REVOKED
;
569 subjectCert
.crlReason(1);
570 tpCrlDebug(" isCertRevoked: cert %u REVOKED by CRL %u",
571 subjectCert
.index(), index());
576 subjectCert
.freeField(&CSSMOID_X509V1SerialNumber
, subjSerial
);
577 if(crtn
&& !subjectCert
.addStatusCode(crtn
)) {
581 CFRelease(cfRevokedTime
);
584 CFRelease(cfVerifyTime
);
593 /* build empty group */
594 TPCrlGroup::TPCrlGroup(
596 TPGroupOwner whoOwns
) :
603 /* nothing for now */
607 * Construct from unordered, untrusted CSSM_CRLGROUP. Resulting
608 * TPCrlInfos are more or less in the same order as the incoming
609 * CRLs, though incoming CRLs are discarded if they don't parse.
610 * No verification of any sort is performed.
612 TPCrlGroup::TPCrlGroup(
613 const CSSM_CRLGROUP
*cssmCrlGroup
, // optional
614 CSSM_CL_HANDLE clHand
,
615 CSSM_CSP_HANDLE cspHand
,
617 const char *verifyTime
, // may be NULL
618 TPGroupOwner whoOwns
) :
625 /* verify input args */
626 if((cssmCrlGroup
== NULL
) || (cssmCrlGroup
->NumberOfCrls
== 0)) {
629 if(cspHand
== CSSM_INVALID_HANDLE
) {
630 CssmError::throwMe(CSSMERR_TP_INVALID_CSP_HANDLE
);
632 if(clHand
== CSSM_INVALID_HANDLE
) {
633 CssmError::throwMe(CSSMERR_TP_INVALID_CL_HANDLE
);
635 if(cssmCrlGroup
->CrlGroupType
!= CSSM_CRLGROUP_DATA
) {
636 CssmError::throwMe(CSSMERR_TP_INVALID_CERTGROUP
);
638 switch(cssmCrlGroup
->CrlType
) {
639 case CSSM_CRL_TYPE_X_509v1
:
640 case CSSM_CRL_TYPE_X_509v2
:
643 CssmError::throwMe(CSSMERR_TP_UNKNOWN_FORMAT
);
645 switch(cssmCrlGroup
->CrlEncoding
) {
646 case CSSM_CRL_ENCODING_BER
:
647 case CSSM_CRL_ENCODING_DER
:
650 CssmError::throwMe(CSSMERR_TP_UNKNOWN_FORMAT
);
654 * Add remaining input certs to mCrlInfo.
656 TPCrlInfo
*crlInfo
= NULL
;
657 for(unsigned crlDex
=0; crlDex
<cssmCrlGroup
->NumberOfCrls
; crlDex
++) {
659 crlInfo
= new TPCrlInfo(clHand
,
661 &cssmCrlGroup
->GroupCrlList
.CrlList
[crlDex
],
662 TIC_NoCopy
, // don't copy data
666 /* just ignore this CRL */
669 crlInfo
->index(crlDex
);
675 * Deletes all TPCrlInfo's if appropriate.
677 TPCrlGroup::~TPCrlGroup()
679 if(mWhoOwns
== TGO_Group
) {
681 for(i
=0; i
<mNumCrls
; i
++) {
685 mAlloc
.free(mCrlInfo
);
688 /* add/remove/access TPTCrlInfo's. */
690 * NOTE: I am aware that most folks would just use an array<> here, but
691 * gdb is so lame that it doesn't even let one examine the contents
692 * of an array<> (or just about anything else in the STL). I prefer
693 * debuggability over saving a few lines of trivial code.
695 void TPCrlGroup::appendCrl(
698 if(mNumCrls
== mSizeofCrlInfo
) {
699 if(mSizeofCrlInfo
== 0) {
700 /* appending to empty array */
706 mCrlInfo
= (TPCrlInfo
**)mAlloc
.realloc(mCrlInfo
,
707 mSizeofCrlInfo
* sizeof(TPCrlInfo
*));
709 mCrlInfo
[mNumCrls
++] = &crlInfo
;
712 TPCrlInfo
*TPCrlGroup::crlAtIndex(
715 if(index
> (mNumCrls
- 1)) {
716 CssmError::throwMe(CSSMERR_TP_INTERNAL_ERROR
);
718 return mCrlInfo
[index
];
721 TPCrlInfo
&TPCrlGroup::removeCrlAtIndex(
722 unsigned index
) // doesn't delete the cert, just
723 // removes it from our list
725 if(index
> (mNumCrls
- 1)) {
726 CssmError::throwMe(CSSMERR_TP_INTERNAL_ERROR
);
728 TPCrlInfo
&rtn
= *mCrlInfo
[index
];
730 /* removed requested element and compact remaining array */
732 for(i
=index
; i
<(mNumCrls
- 1); i
++) {
733 mCrlInfo
[i
] = mCrlInfo
[i
+1];
739 void TPCrlGroup::removeCrl(
742 for(unsigned dex
=0; dex
<mNumCrls
; dex
++) {
743 if(mCrlInfo
[dex
] == &crlInfo
) {
744 removeCrlAtIndex(dex
);
748 tpErrorLog("TPCrlGroup::removeCrl: CRL NOT FOUND\n");
752 TPCrlInfo
*TPCrlGroup::firstCrl()
755 /* the caller really should not do this... */
756 CssmError::throwMe(CSSMERR_TP_INTERNAL_ERROR
);
763 TPCrlInfo
*TPCrlGroup::lastCrl()
766 /* the caller really should not do this... */
767 CssmError::throwMe(CSSMERR_TP_INTERNAL_ERROR
);
770 return mCrlInfo
[mNumCrls
- 1];
775 * Find a CRL whose issuer matches specified subject cert.
776 * Returned CRL has not necessarily been verified.
778 TPCrlInfo
*TPCrlGroup::findCrlForCert(
781 for(unsigned dex
=0; dex
<mNumCrls
; dex
++) {
782 TPCrlInfo
*crl
= mCrlInfo
[dex
];
783 if(crl
->hasSameIssuer(subject
)) {