Home
last modified time | relevance | path

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

/third_party/rust/crates/rust-openssl/openssl/src/ssl/
Dmod.rs794 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/
Dssl_lib.c3262 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 …]
Dssl_cert.c386 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()
Dssl_local.h850 struct x509_store_st /* X509_STORE */ *cert_store; member
/third_party/rust/crates/rust-openssl/openssl-sys/src/handwritten/
Dtypes.rs766 cert_store: *mut c_void,
784 cert_store: *mut c_void,
854 cert_store: *mut c_void,
/third_party/node/src/
Dnode_crypto.cc1056 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/
Dpkcs7.h247 int PKCS7_dataVerify(X509_STORE *cert_store, X509_STORE_CTX *ctx,
/third_party/openssl/crypto/pkcs7/
Dpk7_doit.c960 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/
Dpkcs7.h.in276 int PKCS7_dataVerify(X509_STORE *cert_store, X509_STORE_CTX *ctx,
/third_party/rust/crates/rust-openssl/openssl/src/ssl/test/
Dmod.rs834 fn cert_store() { in cert_store() function
/third_party/openssl/ssl/statem/
Dstatem_lib.c949 chain_store = s->ctx->cert_store; in ssl_add_cert_chain()
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/wpa_supplicant/
DChangeLog1835 certificate store: ca_cert="cert_store://<name>", where <name> is
/third_party/wpa_supplicant/wpa_supplicant-2.9/wpa_supplicant/
DChangeLog1782 certificate store: ca_cert="cert_store://<name>", where <name> is
/third_party/node/doc/changelogs/
DCHANGELOG_V7.md1782 …s/node/commit/3f45cc19b0)] - **crypto**: Use reference count to manage cert_store (Adam Majer) [#9…
DCHANGELOG_V4.md496 …s/node/commit/bf882fba35)] - **crypto**: Use reference count to manage cert_store (Adam Majer) [#9…
DCHANGELOG_V6.md2620 …s/node/commit/8c6ecce743)] - **crypto**: Use reference count to manage cert_store (Adam Majer) [#9…