Lines Matching refs:store
2944 static CURLcode load_cacert_from_memory(X509_STORE *store, in load_cacert_from_memory() argument
2972 if(X509_STORE_add_cert(store, itmp->x509)) { in load_cacert_from_memory()
2982 if(X509_STORE_add_crl(store, itmp->crl)) { in load_cacert_from_memory()
3003 X509_STORE *store, in import_windows_cert_store() argument
3123 if(X509_STORE_add_cert(store, x509) == 1) { in import_windows_cert_store()
3146 X509_STORE *store) in populate_x509_store() argument
3164 if(!store) in populate_x509_store()
3182 result = import_windows_cert_store(data, storeNames[i], store, in populate_x509_store()
3197 result = load_cacert_from_memory(store, ca_info_blob); in populate_x509_store()
3211 if(ssl_cafile && !X509_STORE_load_file(store, ssl_cafile)) { in populate_x509_store()
3220 if(ssl_capath && !X509_STORE_load_path(store, ssl_capath)) { in populate_x509_store()
3232 if(!X509_STORE_load_locations(store, ssl_cafile, ssl_capath)) { in populate_x509_store()
3256 X509_STORE_set_default_paths(store); in populate_x509_store()
3264 lookup = X509_STORE_add_lookup(store, X509_LOOKUP_file()); in populate_x509_store()
3272 X509_STORE_set_flags(store, in populate_x509_store()
3287 X509_STORE_set_flags(store, X509_V_FLAG_TRUSTED_FIRST); in populate_x509_store()
3299 X509_STORE_set_flags(store, X509_V_FLAG_PARTIAL_CHAIN); in populate_x509_store()
3314 X509_STORE *store; /* cached X509 store or NULL if none */ member
3325 if(share->store) { in oss_x509_share_free()
3326 X509_STORE_free(share->store); in oss_x509_share_free()
3364 X509_STORE *store = NULL; in get_cached_x509_store() local
3370 if(share && share->store && in get_cached_x509_store()
3373 store = share->store; in get_cached_x509_store()
3376 return store; in get_cached_x509_store()
3381 X509_STORE *store) in set_cached_x509_store() argument
3407 if(X509_STORE_up_ref(store)) { in set_cached_x509_store()
3413 X509_STORE_free(store); in set_cached_x509_store()
3418 if(share->store) { in set_cached_x509_store()
3419 X509_STORE_free(share->store); in set_cached_x509_store()
3424 share->store = store; in set_cached_x509_store()
3454 X509_STORE *store = SSL_CTX_get_cert_store(ssl_ctx); in Curl_ssl_setup_x509_store() local
3456 result = populate_x509_store(cf, data, store); in Curl_ssl_setup_x509_store()
3458 set_cached_x509_store(cf, data, store); in Curl_ssl_setup_x509_store()
3469 X509_STORE *store = SSL_CTX_get_cert_store(ssl_ctx); in Curl_ssl_setup_x509_store() local
3471 return populate_x509_store(cf, data, store); in Curl_ssl_setup_x509_store()