Lines Matching defs:chain
64 * x509_certificate_free - Free an X.509 certificate chain
65 * @cert: Pointer to the first certificate in the chain
2071 * x509_certificate_chain_validate - Validate X.509 certificate chain
2073 * @chain: Certificate chain to be validated (first chain must be issued by
2074 * signed by the second certificate in the chain and so on)
2076 * Returns: 0 if chain is valid, -1 if not
2079 struct x509_certificate *chain,
2090 wpa_printf(MSG_DEBUG, "X509: Validate certificate chain");
2093 for (cert = chain, idx = 0; cert; cert = cert->next, idx++) {
2117 "chain issuer name mismatch");
2150 "chain");
2179 "found to complete the chain");
2192 wpa_printf(MSG_DEBUG, "X509: Certificate chain validation "
2196 wpa_printf(MSG_DEBUG, "X509: Certificate chain valid");
2204 * @chain: Certificate chain to search through
2210 x509_certificate_get_subject(struct x509_certificate *chain,
2215 for (cert = chain; cert; cert = cert->next) {