Lines Matching defs:x509
407 struct x509_certificate *x509;
426 x509 = x509_cert_parse(value, vlen);
427 if (IS_ERR(x509))
428 return PTR_ERR(x509);
430 x509->index = ++ctx->x509_index;
431 pr_debug("Got cert %u for %s\n", x509->index, x509->subject);
432 pr_debug("- fingerprint %*phN\n", x509->id->len, x509->id->data);
434 *ctx->ppcerts = x509;
435 ctx->ppcerts = &x509->next;