Searched refs:cert_store (Results 1 - 25 of 27) sorted by relevance

12

/external/chromium_org/chrome/browser/browsing_data/
H A Dbrowsing_data_channel_id_helper.cc99 net::ChannelIDStore* cert_store = local
102 if (cert_store) {
103 cert_store->GetAllChannelIDs(base::Bind(
133 net::ChannelIDStore* cert_store = local
136 if (cert_store) {
137 cert_store->DeleteChannelID(
/external/chromium_org/chrome/browser/ui/views/
H A Dcertificate_viewer_win.cc36 HCERTSTORE cert_store = cert_list->hCertStore; local
38 view_info.rghStores = &cert_store;
/external/chromium_org/chrome/app/
H A Dsignature_validator_win.cc172 // If successful, cert_store will be populated by a store containing all the
174 HCERTSTORE cert_store = NULL;
185 &cert_store,
189 ScopedCertStoreHandle scoped_cert_store(cert_store);
196 cert_store,
/external/chromium_org/net/cert/
H A Dtest_root_certs_openssl.cc18 if (!X509_STORE_add_cert(X509Certificate::cert_store(),
H A Dcert_verify_proc_openssl.cc222 if (X509_STORE_CTX_init(ctx.get(), X509Certificate::cert_store(),
H A Dx509_certificate.h310 static X509_STORE* cert_store();
442 // Resets the store returned by cert_store() to default state. Used by
H A Dx509_certificate_openssl.cc304 X509_STORE* X509Certificate::cert_store() { function in class:net::X509Certificate
/external/chromium_org/net/ssl/
H A Dclient_cert_store_win.cc67 void GetClientCertsImpl(HCERTSTORE cert_store, argument
95 chain_context = CertFindChainInStore(cert_store,
110 // Copy the certificate, so that it is valid after |cert_store| is closed.
/external/chromium_org/chrome/browser/ui/website_settings/
H A Dwebsite_settings.h83 content::CertStore* cert_store);
H A Dwebsite_settings_unittest.cc19 #include "content/public/browser/cert_store.h"
122 MockCertStore* cert_store() { return &cert_store_; } function in class:__anon5398::WebsiteSettingsTest
137 infobar_service(), url(), ssl(), cert_store()));
296 EXPECT_CALL(*cert_store(), RetrieveCert(ev_cert_id, _)).WillRepeatedly(
H A Dwebsite_settings.cc40 #include "content/public/browser/cert_store.h"
171 content::CertStore* cert_store)
181 cert_store_(cert_store),
164 WebsiteSettings( WebsiteSettingsUI* ui, Profile* profile, TabSpecificContentSettings* tab_specific_content_settings, InfoBarService* infobar_service, const GURL& url, const content::SSLStatus& ssl, content::CertStore* cert_store) argument
/external/wpa_supplicant_8/hostapd/src/crypto/
H A Dtls_openssl.c489 if (name == NULL || strncmp(name, "cert_store://", 13) != 0)
524 if (!X509_STORE_add_cert(ssl_ctx->cert_store, cert)) {
1536 lookup = X509_STORE_add_lookup(ssl_ctx->cert_store,
1572 X509_STORE_free(ssl_ctx->cert_store);
1573 ssl_ctx->cert_store = X509_STORE_new();
1574 if (ssl_ctx->cert_store == NULL) {
1630 if (!X509_STORE_add_cert(ssl_ctx->cert_store, cert)) {
1668 X509_STORE_add_cert(ssl_ctx->cert_store,
1672 X509_STORE_add_crl(ssl_ctx->cert_store,
2138 X509_STORE_free(ssl_ctx->cert_store);
[all...]
/external/wpa_supplicant_8/src/crypto/
H A Dtls_openssl.c489 if (name == NULL || strncmp(name, "cert_store://", 13) != 0)
524 if (!X509_STORE_add_cert(ssl_ctx->cert_store, cert)) {
1536 lookup = X509_STORE_add_lookup(ssl_ctx->cert_store,
1572 X509_STORE_free(ssl_ctx->cert_store);
1573 ssl_ctx->cert_store = X509_STORE_new();
1574 if (ssl_ctx->cert_store == NULL) {
1630 if (!X509_STORE_add_cert(ssl_ctx->cert_store, cert)) {
1668 X509_STORE_add_cert(ssl_ctx->cert_store,
1672 X509_STORE_add_crl(ssl_ctx->cert_store,
2138 X509_STORE_free(ssl_ctx->cert_store);
[all...]
/external/wpa_supplicant_8/wpa_supplicant/src/crypto/
H A Dtls_openssl.c489 if (name == NULL || strncmp(name, "cert_store://", 13) != 0)
524 if (!X509_STORE_add_cert(ssl_ctx->cert_store, cert)) {
1536 lookup = X509_STORE_add_lookup(ssl_ctx->cert_store,
1572 X509_STORE_free(ssl_ctx->cert_store);
1573 ssl_ctx->cert_store = X509_STORE_new();
1574 if (ssl_ctx->cert_store == NULL) {
1630 if (!X509_STORE_add_cert(ssl_ctx->cert_store, cert)) {
1668 X509_STORE_add_cert(ssl_ctx->cert_store,
1672 X509_STORE_add_crl(ssl_ctx->cert_store,
2138 X509_STORE_free(ssl_ctx->cert_store);
[all...]
/external/chromium_org/third_party/boringssl/src/ssl/
H A Dssl_lib.c1965 ret->cert_store=NULL;
2010 ret->cert_store=X509_STORE_new();
2011 if (ret->cert_store == NULL) goto err;
2106 if (a->cert_store != NULL)
2107 X509_STORE_free(a->cert_store);
2813 return(X509_STORE_set_default_paths(ctx->cert_store));
2819 return(X509_STORE_load_locations(ctx->cert_store,CAfile,CApath));
2897 return(ctx->cert_store);
2902 if (ctx->cert_store != NULL)
2903 X509_STORE_free(ctx->cert_store);
[all...]
H A Dssl_cert.c602 verify_store = s->ctx->cert_store;
982 chain_store = s->ctx->cert_store;
H A Ds3_lib.c1331 return ssl_build_cert_chain(s->cert, s->ctx->cert_store, larg);
1617 return ssl_build_cert_chain(ctx->cert, ctx->cert_store, larg);
/external/openssl/ssl/
H A Dssl_lib.c1877 ret->cert_store=NULL;
1928 ret->cert_store=X509_STORE_new();
1929 if (ret->cert_store == NULL) goto err;
2107 if (a->cert_store != NULL)
2108 X509_STORE_free(a->cert_store);
3167 return(X509_STORE_set_default_paths(ctx->cert_store));
3173 return(X509_STORE_load_locations(ctx->cert_store,CAfile,CApath));
3251 return(ctx->cert_store);
3256 if (ctx->cert_store != NULL)
3257 X509_STORE_free(ctx->cert_store);
[all...]
H A Ds3_both.c383 if (!X509_STORE_CTX_init(&xs_ctx,s->ctx->cert_store,x,NULL))
H A Dssl_cert.c499 if(!X509_STORE_CTX_init(&ctx,s->ctx->cert_store,x,sk))
H A Dd1_both.c1061 if (!X509_STORE_CTX_init(&xs_ctx,s->ctx->cert_store,x,NULL))
/external/openssl/crypto/pkcs7/
H A Dpkcs7.h317 int PKCS7_dataVerify(X509_STORE *cert_store, X509_STORE_CTX *ctx,
H A Dpk7_doit.c966 int PKCS7_dataVerify(X509_STORE *cert_store, X509_STORE_CTX *ctx, BIO *bio, argument
1000 if(!X509_STORE_CTX_init(ctx,cert_store,x509,cert))
/external/openssl/include/openssl/
H A Dpkcs7.h317 int PKCS7_dataVerify(X509_STORE *cert_store, X509_STORE_CTX *ctx,
/external/chromium_org/third_party/boringssl/src/include/openssl/
H A Dssl.h802 struct x509_store_st /* X509_STORE */ *cert_store; member in struct:ssl_ctx_st

Completed in 9608 milliseconds

12