/third_party/rust/crates/rust-openssl/openssl/src/ssl/ |
D | mod.rs | 794 pub fn set_verify_cert_store(&mut self, cert_store: X509Store) -> Result<(), ErrorStack> { in set_verify_cert_store() 796 let ptr = cert_store.as_ptr(); in set_verify_cert_store() 798 mem::forget(cert_store); in set_verify_cert_store() 806 pub fn set_cert_store(&mut self, cert_store: X509Store) { in set_cert_store() 808 ffi::SSL_CTX_set_cert_store(self.as_ptr(), cert_store.as_ptr()); in set_cert_store() 809 mem::forget(cert_store); in set_cert_store() 1274 pub fn cert_store(&self) -> &X509StoreBuilderRef { in cert_store() method 1814 pub fn cert_store(&self) -> &X509StoreRef { in cert_store() method 3303 pub fn set_verify_cert_store(&mut self, cert_store: X509Store) -> Result<(), ErrorStack> { in set_verify_cert_store() 3305 cvt(ffi::SSL_set0_verify_cert_store(self.as_ptr(), cert_store.as_ptr()) as c_int)?; in set_verify_cert_store() [all …]
|
/third_party/openssl/ssl/ |
D | ssl_lib.c | 3262 ret->cert_store = X509_STORE_new(); in SSL_CTX_new_ex() 3263 if (ret->cert_store == NULL) in SSL_CTX_new_ex() 3460 X509_STORE_free(a->cert_store); in SSL_CTX_free() 4364 return X509_STORE_set_default_paths_ex(ctx->cert_store, ctx->libctx, in SSL_CTX_set_default_verify_paths() 4372 lookup = X509_STORE_add_lookup(ctx->cert_store, X509_LOOKUP_hash_dir()); in SSL_CTX_set_default_verify_dir() 4390 lookup = X509_STORE_add_lookup(ctx->cert_store, X509_LOOKUP_file()); in SSL_CTX_set_default_verify_file() 4409 lookup = X509_STORE_add_lookup(ctx->cert_store, X509_LOOKUP_store()); in SSL_CTX_set_default_verify_store() 4425 return X509_STORE_load_file_ex(ctx->cert_store, CAfile, ctx->libctx, in SSL_CTX_load_verify_file() 4431 return X509_STORE_load_path(ctx->cert_store, CApath); in SSL_CTX_load_verify_dir() 4436 return X509_STORE_load_store_ex(ctx->cert_store, CAstore, ctx->libctx, in SSL_CTX_load_verify_store() [all …]
|
D | ssl_cert.c | 386 verify_store = s->ctx->cert_store; in ssl_verify_cert_chain() 884 chain_store = s->ctx->cert_store; in ssl_build_cert_chain() 886 chain_store = ctx->cert_store; in ssl_build_cert_chain()
|
D | ssl_local.h | 850 struct x509_store_st /* X509_STORE */ *cert_store; member
|
/third_party/rust/crates/rust-openssl/openssl-sys/src/handwritten/ |
D | types.rs | 766 cert_store: *mut c_void, 784 cert_store: *mut c_void, 854 cert_store: *mut c_void,
|
/third_party/node/src/ |
D | node_crypto.cc | 1056 X509_STORE* cert_store = SSL_CTX_get_cert_store(sc->ctx_.get()); in AddCACert() local 1059 if (cert_store == root_cert_store) { in AddCACert() 1060 cert_store = NewRootCertStore(); in AddCACert() 1061 SSL_CTX_set_cert_store(sc->ctx_.get(), cert_store); in AddCACert() 1063 X509_STORE_add_cert(cert_store, x509); in AddCACert() 1092 X509_STORE* cert_store = SSL_CTX_get_cert_store(sc->ctx_.get()); in AddCRL() local 1093 if (cert_store == root_cert_store) { in AddCRL() 1094 cert_store = NewRootCertStore(); in AddCRL() 1095 SSL_CTX_set_cert_store(sc->ctx_.get(), cert_store); in AddCRL() 1098 X509_STORE_add_crl(cert_store, crl.get()); in AddCRL() [all …]
|
/third_party/openssl/ohos_lite/include/openssl/ |
D | pkcs7.h | 247 int PKCS7_dataVerify(X509_STORE *cert_store, X509_STORE_CTX *ctx,
|
/third_party/openssl/crypto/pkcs7/ |
D | pk7_doit.c | 960 int PKCS7_dataVerify(X509_STORE *cert_store, X509_STORE_CTX *ctx, BIO *bio, in PKCS7_dataVerify() argument 998 if (!X509_STORE_CTX_init(ctx, cert_store, x509, cert)) { in PKCS7_dataVerify()
|
/third_party/openssl/include/openssl/ |
D | pkcs7.h.in | 276 int PKCS7_dataVerify(X509_STORE *cert_store, X509_STORE_CTX *ctx,
|
/third_party/rust/crates/rust-openssl/openssl/src/ssl/test/ |
D | mod.rs | 834 fn cert_store() { in cert_store() function
|
/third_party/openssl/ssl/statem/ |
D | statem_lib.c | 949 chain_store = s->ctx->cert_store; in ssl_add_cert_chain()
|
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/wpa_supplicant/ |
D | ChangeLog | 1835 certificate store: ca_cert="cert_store://<name>", where <name> is
|
/third_party/wpa_supplicant/wpa_supplicant-2.9/wpa_supplicant/ |
D | ChangeLog | 1782 certificate store: ca_cert="cert_store://<name>", where <name> is
|
/third_party/node/doc/changelogs/ |
D | CHANGELOG_V7.md | 1782 …s/node/commit/3f45cc19b0)] - **crypto**: Use reference count to manage cert_store (Adam Majer) [#9…
|
D | CHANGELOG_V4.md | 496 …s/node/commit/bf882fba35)] - **crypto**: Use reference count to manage cert_store (Adam Majer) [#9…
|
D | CHANGELOG_V6.md | 2620 …s/node/commit/8c6ecce743)] - **crypto**: Use reference count to manage cert_store (Adam Majer) [#9…
|