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

/external/chromium/chrome/browser/ui/views/
H A Dcertificate_viewer_win.cc24 HCERTSTORE cert_store = view_info.pCertContext->hCertStore; local
26 view_info.rghStores = &cert_store;
/external/openssl/crypto/pkcs7/
H A 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);
H A 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);
H A Dpkcs7.h321 int PKCS7_dataVerify(X509_STORE *cert_store, X509_STORE_CTX *ctx,
H A Dpk7_doit.c960 int PKCS7_dataVerify(X509_STORE *cert_store, X509_STORE_CTX *ctx, BIO *bio, argument
994 if(!X509_STORE_CTX_init(ctx,cert_store,x509,cert))
/external/chromium/net/base/
H A Dtest_root_certs_openssl.cc18 if (!X509_STORE_add_cert(X509Certificate::cert_store(),
H A Dx509_certificate.h281 static HCERTSTORE cert_store();
287 static X509_STORE* cert_store();
378 // Resets the store returned by cert_store() to default state. Used by
H A Dx509_certificate_openssl.cc407 X509_STORE* X509Certificate::cert_store() { function in class:net::X509Certificate
443 int rv = X509_STORE_CTX_init(ctx.get(), cert_store(),
H A Dx509_certificate_win.cc638 HCERTSTORE cert_store() { function in class:net::GlobalCertStore
662 HCERTSTORE X509Certificate::cert_store() { function in class:net::X509Certificate
663 return g_cert_store.Get().cert_store();
H A Dx509_certificate.cc191 X509Certificate::cert_store(), X509_ASN_ENCODING | PKCS_7_ASN_ENCODING,
/external/wpa_supplicant_6/wpa_supplicant/src/crypto/
H A Dtls_openssl.c430 if (name == NULL || strncmp(name, "cert_store://", 13) != 0)
465 if (!X509_STORE_add_cert(ssl_ctx->cert_store, cert)) {
1072 lookup = X509_STORE_add_lookup(ssl_ctx->cert_store,
1108 X509_STORE_free(ssl_ctx->cert_store);
1109 ssl_ctx->cert_store = X509_STORE_new();
1110 if (ssl_ctx->cert_store == NULL) {
1125 if (!X509_STORE_add_cert(ssl_ctx->cert_store, cert)) {
1163 X509_STORE_add_cert(ssl_ctx->cert_store, info->x509);
1166 X509_STORE_add_crl(ssl_ctx->cert_store, info->crl);
1624 X509_STORE_free(ssl_ctx->cert_store);
[all...]
/external/wpa_supplicant_8/hostapd/src/crypto/
H A Dtls_openssl.c434 if (name == NULL || strncmp(name, "cert_store://", 13) != 0)
469 if (!X509_STORE_add_cert(ssl_ctx->cert_store, cert)) {
1310 lookup = X509_STORE_add_lookup(ssl_ctx->cert_store,
1359 X509_STORE_free(ssl_ctx->cert_store);
1360 ssl_ctx->cert_store = X509_STORE_new();
1361 if (ssl_ctx->cert_store == NULL) {
1417 if (!X509_STORE_add_cert(ssl_ctx->cert_store, cert)) {
1455 X509_STORE_add_cert(ssl_ctx->cert_store,
1459 X509_STORE_add_crl(ssl_ctx->cert_store,
1916 X509_STORE_free(ssl_ctx->cert_store);
[all...]
/external/wpa_supplicant_8/src/crypto/
H A Dtls_openssl.c434 if (name == NULL || strncmp(name, "cert_store://", 13) != 0)
469 if (!X509_STORE_add_cert(ssl_ctx->cert_store, cert)) {
1310 lookup = X509_STORE_add_lookup(ssl_ctx->cert_store,
1359 X509_STORE_free(ssl_ctx->cert_store);
1360 ssl_ctx->cert_store = X509_STORE_new();
1361 if (ssl_ctx->cert_store == NULL) {
1417 if (!X509_STORE_add_cert(ssl_ctx->cert_store, cert)) {
1455 X509_STORE_add_cert(ssl_ctx->cert_store,
1459 X509_STORE_add_crl(ssl_ctx->cert_store,
1916 X509_STORE_free(ssl_ctx->cert_store);
[all...]
/external/wpa_supplicant_8/wpa_supplicant/src/crypto/
H A Dtls_openssl.c434 if (name == NULL || strncmp(name, "cert_store://", 13) != 0)
469 if (!X509_STORE_add_cert(ssl_ctx->cert_store, cert)) {
1310 lookup = X509_STORE_add_lookup(ssl_ctx->cert_store,
1359 X509_STORE_free(ssl_ctx->cert_store);
1360 ssl_ctx->cert_store = X509_STORE_new();
1361 if (ssl_ctx->cert_store == NULL) {
1417 if (!X509_STORE_add_cert(ssl_ctx->cert_store, cert)) {
1455 X509_STORE_add_cert(ssl_ctx->cert_store,
1459 X509_STORE_add_crl(ssl_ctx->cert_store,
1916 X509_STORE_free(ssl_ctx->cert_store);
[all...]
/external/openssl/ssl/
H A Dssl_lib.c1735 ret->cert_store=NULL;
1786 ret->cert_store=X509_STORE_new();
1787 if (ret->cert_store == NULL) goto err;
1963 if (a->cert_store != NULL)
1964 X509_STORE_free(a->cert_store);
2993 return(X509_STORE_set_default_paths(ctx->cert_store));
2999 return(X509_STORE_load_locations(ctx->cert_store,CAfile,CApath));
3077 return(ctx->cert_store);
3082 if (ctx->cert_store != NULL)
3083 X509_STORE_free(ctx->cert_store);
[all...]
H A Ds3_both.c375 if (!X509_STORE_CTX_init(&xs_ctx,s->ctx->cert_store,x,NULL))
H A Dssl_cert.c519 if(!X509_STORE_CTX_init(&ctx,s->ctx->cert_store,x,sk))
H A Dd1_both.c1031 if (!X509_STORE_CTX_init(&xs_ctx,s->ctx->cert_store,x,NULL))
H A Dssl.h781 struct x509_store_st /* X509_STORE */ *cert_store; member in struct:ssl_ctx_st
/external/openssl/include/openssl/
H A Dpkcs7.h321 int PKCS7_dataVerify(X509_STORE *cert_store, X509_STORE_CTX *ctx,
H A Dssl.h781 struct x509_store_st /* X509_STORE */ *cert_store; member in struct:ssl_ctx_st
/external/chromium/net/socket/
H A Dssl_client_socket_nss.cc2048 BOOL ok = CertAddCertificateContextToStore(X509Certificate::cert_store(),
2064 ok = CertAddCertificateContextToStore(X509Certificate::cert_store(),

Completed in 407 milliseconds