Home | History | Annotate | Download | only in cert

Lines Matching refs:cert_list

158 // Saves some information about the certificate chain cert_list in
161 // Note that cert_list[0] is the end entity certificate.
162 void GetCertChainInfo(CERTCertList* cert_list,
165 DCHECK(cert_list);
170 for (CERTCertListNode* node = CERT_LIST_HEAD(cert_list);
171 !CERT_LIST_END(node, cert_list);
186 if (!CERT_LIST_END(next_node, cert_list)) {
262 // CheckRevocationWithCRLSet attempts to check each element of |cert_list|
269 CRLSetResult CheckRevocationWithCRLSet(CERTCertList* cert_list,
274 if (cert_list) {
275 for (CERTCertListNode* node = CERT_LIST_HEAD(cert_list);
276 !CERT_LIST_END(node, cert_list);
614 void AppendPublicKeyHashes(CERTCertList* cert_list,
617 for (CERTCertListNode* node = CERT_LIST_HEAD(cert_list);
618 !CERT_LIST_END(node, cert_list);