Home
last modified time | relevance | path

Searched refs:cert_store (Results 1 – 25 of 28) sorted by relevance

12

/external/openssl/crypto/pkcs7/
Dverify.c79 X509_STORE *cert_store=NULL; local
138 cert_store=X509_STORE_new();
139 X509_STORE_set_default_paths(cert_store);
140 X509_STORE_load_locations(cert_store,NULL,"../../certs");
141 X509_STORE_set_verify_cb_func(cert_store,verify_callback);
185 rc=PKCS7_dataVerify(cert_store,&cert_ctx,p7bio,p7,si);
204 X509_STORE_free(cert_store);
Ddec.c82 X509_STORE *cert_store=NULL; local
143 cert_store=X509_STORE_new();
144 X509_STORE_set_default_paths(cert_store);
145 X509_STORE_load_locations(cert_store,NULL,"../../certs");
146 X509_STORE_set_verify_cb_func(cert_store,verify_callback);
183 i=PKCS7_dataVerify(cert_store,&cert_ctx,p7bio,p7,si);
190 X509_STORE_free(cert_store);
Dpkcs7.h321 int PKCS7_dataVerify(X509_STORE *cert_store, X509_STORE_CTX *ctx,
Dpk7_doit.c913 int PKCS7_dataVerify(X509_STORE *cert_store, X509_STORE_CTX *ctx, BIO *bio, in PKCS7_dataVerify() argument
947 if(!X509_STORE_CTX_init(ctx,cert_store,x509,cert)) in PKCS7_dataVerify()
/external/chromium/chrome/browser/ui/views/
Dcertificate_viewer_win.cc24 HCERTSTORE cert_store = view_info.pCertContext->hCertStore; in ShowCertificateViewer() local
26 view_info.rghStores = &cert_store; in ShowCertificateViewer()
/external/chromium/net/base/
Dtest_root_certs_openssl.cc18 if (!X509_STORE_add_cert(X509Certificate::cert_store(), in Add()
Dx509_certificate.h280 static HCERTSTORE cert_store();
286 static X509_STORE* cert_store();
Dx509_certificate_openssl.cc407 X509_STORE* X509Certificate::cert_store() { in cert_store() function in net::X509Certificate
443 int rv = X509_STORE_CTX_init(ctx.get(), cert_store(), in Verify()
Dx509_certificate_win.cc638 HCERTSTORE cert_store() { in cert_store() function in net::GlobalCertStore
662 HCERTSTORE X509Certificate::cert_store() { in cert_store() function in net::X509Certificate
663 return g_cert_store.Get().cert_store(); in cert_store()
Dx509_certificate.cc185 X509Certificate::cert_store(), X509_ASN_ENCODING | PKCS_7_ASN_ENCODING, in CreateOSCert()
/external/wpa_supplicant_6/wpa_supplicant/src/crypto/
Dtls_openssl.c465 if (!X509_STORE_add_cert(ssl_ctx->cert_store, cert)) { in tls_cryptoapi_ca_cert()
1067 lookup = X509_STORE_add_lookup(ssl_ctx->cert_store, in tls_load_ca_der()
1103 X509_STORE_free(ssl_ctx->cert_store); in tls_connection_ca_cert()
1104 ssl_ctx->cert_store = X509_STORE_new(); in tls_connection_ca_cert()
1105 if (ssl_ctx->cert_store == NULL) { in tls_connection_ca_cert()
1120 if (!X509_STORE_add_cert(ssl_ctx->cert_store, cert)) { in tls_connection_ca_cert()
1158 X509_STORE_add_cert(ssl_ctx->cert_store, info->x509); in tls_connection_ca_cert()
1161 X509_STORE_add_crl(ssl_ctx->cert_store, info->crl); in tls_connection_ca_cert()
1619 X509_STORE_free(ssl_ctx->cert_store); in tls_connection_engine_ca_cert()
1620 ssl_ctx->cert_store = X509_STORE_new(); in tls_connection_engine_ca_cert()
[all …]
/external/wpa_supplicant_8/src/crypto/
Dtls_openssl.c472 if (!X509_STORE_add_cert(ssl_ctx->cert_store, cert)) { in tls_cryptoapi_ca_cert()
1283 lookup = X509_STORE_add_lookup(ssl_ctx->cert_store, in tls_load_ca_der()
1332 X509_STORE_free(ssl_ctx->cert_store); in tls_connection_ca_cert()
1333 ssl_ctx->cert_store = X509_STORE_new(); in tls_connection_ca_cert()
1334 if (ssl_ctx->cert_store == NULL) { in tls_connection_ca_cert()
1390 if (!X509_STORE_add_cert(ssl_ctx->cert_store, cert)) { in tls_connection_ca_cert()
1428 X509_STORE_add_cert(ssl_ctx->cert_store, in tls_connection_ca_cert()
1432 X509_STORE_add_crl(ssl_ctx->cert_store, in tls_connection_ca_cert()
1888 X509_STORE_free(ssl_ctx->cert_store); in tls_connection_engine_ca_cert()
1889 ssl_ctx->cert_store = X509_STORE_new(); in tls_connection_engine_ca_cert()
[all …]
/external/wpa_supplicant/
Dtls_openssl.c515 if (!X509_STORE_add_cert(ssl_ctx->cert_store, cert)) { in tls_cryptoapi_ca_cert()
1086 lookup = X509_STORE_add_lookup(ssl_ctx->cert_store, in tls_load_ca_der()
1121 X509_STORE_free(ssl_ctx->cert_store); in tls_connection_ca_cert()
1122 ssl_ctx->cert_store = X509_STORE_new(); in tls_connection_ca_cert()
1123 if (ssl_ctx->cert_store == NULL) { in tls_connection_ca_cert()
1138 if (!X509_STORE_add_cert(ssl_ctx->cert_store, cert)) { in tls_connection_ca_cert()
1176 X509_STORE_add_cert(ssl_ctx->cert_store, info->x509); in tls_connection_ca_cert()
1179 X509_STORE_add_crl(ssl_ctx->cert_store, info->crl); in tls_connection_ca_cert()
Dwpa_supplicant.conf.orig306 # certificate store by setting this to cert_store://<name>, e.g.,
307 # ca_cert="cert_store://CA" or ca_cert="cert_store://ROOT".
/external/openssl/ssl/
Dssl_lib.c1690 ret->cert_store=NULL; in IMPLEMENT_LHASH_HASH_FN()
1741 ret->cert_store=X509_STORE_new(); in IMPLEMENT_LHASH_HASH_FN()
1742 if (ret->cert_store == NULL) goto err; in IMPLEMENT_LHASH_HASH_FN()
1915 if (a->cert_store != NULL) in SSL_CTX_free()
1916 X509_STORE_free(a->cert_store); in SSL_CTX_free()
2935 return(X509_STORE_set_default_paths(ctx->cert_store)); in SSL_CTX_set_default_verify_paths()
2941 return(X509_STORE_load_locations(ctx->cert_store,CAfile,CApath)); in SSL_CTX_load_verify_locations()
3014 return(ctx->cert_store); in SSL_CTX_get_cert_store()
3019 if (ctx->cert_store != NULL) in SSL_CTX_set_cert_store()
3020 X509_STORE_free(ctx->cert_store); in SSL_CTX_set_cert_store()
[all …]
Dssl_cert.c500 if(!X509_STORE_CTX_init(&ctx,s->ctx->cert_store,x,sk)) in ssl_verify_cert_chain()
Ds3_both.c377 if (!X509_STORE_CTX_init(&xs_ctx,s->ctx->cert_store,x,NULL)) in ssl3_output_cert_chain()
Dd1_both.c1022 if (!X509_STORE_CTX_init(&xs_ctx,s->ctx->cert_store,x,NULL)) in dtls1_output_cert_chain()
Dssl.h700 struct x509_store_st /* X509_STORE */ *cert_store; member
/external/openssl/include/openssl/
Dpkcs7.h321 int PKCS7_dataVerify(X509_STORE *cert_store, X509_STORE_CTX *ctx,
Dssl.h700 struct x509_store_st /* X509_STORE */ *cert_store; member
/external/wpa_supplicant_8/wpa_supplicant/
Dwpa_supplicant.conf.orig427 # certificate store by setting this to cert_store://<name>, e.g.,
428 # ca_cert="cert_store://CA" or ca_cert="cert_store://ROOT".
/external/wpa_supplicant_6/wpa_supplicant/
Dwpa_supplicant.conf.orig375 # certificate store by setting this to cert_store://<name>, e.g.,
376 # ca_cert="cert_store://CA" or ca_cert="cert_store://ROOT".
/external/chromium/net/socket/
Dssl_client_socket_nss.cc2048 BOOL ok = CertAddCertificateContextToStore(X509Certificate::cert_store(), in PlatformClientAuthHandler()
2064 ok = CertAddCertificateContextToStore(X509Certificate::cert_store(), in PlatformClientAuthHandler()
/external/chromium/chrome/browser/ui/cocoa/
Dpage_info_bubble_controller.mm19 #include "content/browser/cert_store.h"

12