Lines Matching defs:x509
389 struct x509_certificate *x509;
408 x509 = x509_cert_parse(value, vlen);
409 if (IS_ERR(x509))
410 return PTR_ERR(x509);
412 x509->index = ++ctx->x509_index;
413 pr_debug("Got cert %u for %s\n", x509->index, x509->subject);
414 pr_debug("- fingerprint %*phN\n", x509->id->len, x509->id->data);
416 *ctx->ppcerts = x509;
417 ctx->ppcerts = &x509->next;