Lines Matching full:chain
62 * x509_certificate_free - Free an X.509 certificate chain
63 * @cert: Pointer to the first certificate in the chain
1525 * x509_certificate_chain_validate - Validate X.509 certificate chain
1527 * @chain: Certificate chain to be validated (first chain must be issued by
1528 * signed by the second certificate in the chain and so on)
1530 * Returns: 0 if chain is valid, -1 if not
1533 struct x509_certificate *chain,
1544 wpa_printf(MSG_DEBUG, "X509: Validate certificate chain");
1547 for (cert = chain, idx = 0; cert; cert = cert->next, idx++) {
1569 "chain issuer name mismatch");
1594 "chain");
1623 "found to complete the chain");
1635 wpa_printf(MSG_DEBUG, "X509: Certificate chain validation "
1639 wpa_printf(MSG_DEBUG, "X509: Certificate chain valid");
1647 * @chain: Certificate chain to search through
1653 x509_certificate_get_subject(struct x509_certificate *chain,
1658 for (cert = chain; cert; cert = cert->next) {