Lines Matching refs:certs
150 sk_X509_pop_free(ctx->certs, X509_free);
198 int TS_RESP_CTX_set_certs(TS_RESP_CTX *ctx, STACK_OF(X509) *certs)
200 sk_X509_pop_free(ctx->certs, X509_free);
201 ctx->certs = NULL;
203 return certs == NULL || (ctx->certs = X509_chain_up_ref(certs)) != NULL;
680 STACK_OF(X509) *certs; /* Certificates to include in sc. */
704 if (ctx->certs) {
705 for (i = 0; i < sk_X509_num(ctx->certs); ++i) {
706 X509 *cert = sk_X509_value(ctx->certs, i);
733 certs = ctx->flags & TS_ESS_CERT_ID_CHAIN ? ctx->certs : NULL;
737 certs, 0)) == NULL)
746 ctx->signer_cert, certs, 0);