Home | History | Annotate | Download | only in ssl

Lines Matching defs:chain_store

211     if (cert->chain_store) {
212 if (!X509_STORE_up_ref(cert->chain_store))
214 ret->chain_store = cert->chain_store;
289 X509_STORE_free(c->chain_store);
1070 X509_STORE *chain_store = NULL;
1083 chain_store = X509_STORE_new();
1084 if (chain_store == NULL)
1088 if (!X509_STORE_add_cert(chain_store, x))
1092 if (!X509_STORE_add_cert(chain_store, cpk->x509))
1095 if (c->chain_store != NULL)
1096 chain_store = c->chain_store;
1098 chain_store = real_ctx->cert_store;
1109 if (!X509_STORE_CTX_init(xs_ctx, chain_store, cpk->x509, untrusted)) {
1166 X509_STORE_free(chain_store);
1180 pstore = &c->chain_store;
1191 *pstore = (chain ? c->chain_store : c->verify_store);