Home | History | Annotate | Download | only in x509

Lines Matching refs:store

252 			 * we can find it in the store. We must have an exact
268 /* We have a match: replace certificate with store version
287 /* We now lookup certs from the certificate store */
1313 /* Lookup CRLs from store */
2000 int X509_STORE_CTX_init(X509_STORE_CTX *ctx, X509_STORE *store, X509 *x509,
2004 ctx->ctx=store;
2034 if (store)
2035 ret = X509_VERIFY_PARAM_inherit(ctx->param, store->param);
2039 if (store)
2041 ctx->verify_cb = store->verify_cb;
2042 ctx->cleanup = store->cleanup;
2057 if (store && store
2058 ctx->check_issued = store->check_issued;
2062 if (store && store->get_issuer)
2063 ctx->get_issuer = store->get_issuer;
2067 if (store && store->verify_cb)
2068 ctx->verify_cb = store->verify_cb;
2072 if (store && store->verify)
2073 ctx->verify = store->verify;
2077 if (store && store->check_revocation)
2078 ctx->check_revocation = store->check_revocation;
2082 if (store && store->get_crl)
2083 ctx->get_crl = store->get_crl;
2087 if (store && store->check_crl)
2088 ctx->check_crl = store->check_crl;
2092 if (store && store->cert_crl)
2093 ctx->cert_crl = store->cert_crl;
2097 if (store && store->lookup_certs)
2098 ctx->lookup_certs = store->lookup_certs;
2102 if (store && store->lookup_crls)
2103 ctx->lookup_crls = store->lookup_crls;