Home
last modified time | relevance | path

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

123

/third_party/curl/lib/vtls/
H A Dschannel_int.h157 HCERTSTORE cert_store; /* cached certificate store or member
167 HCERTSTORE cert_store);
H A Dschannel.c553 HCERTSTORE cert_store = NULL; in schannel_acquire_credential_handle() local
652 cert_store = PFXImportCertStore(&datablob, pszPassword, in schannel_acquire_credential_handle()
655 cert_store = PFXImportCertStore(&datablob, pszPassword, 0); in schannel_acquire_credential_handle()
661 if(!cert_store) { in schannel_acquire_credential_handle()
675 cert_store, X509_ASN_ENCODING | PKCS_7_ASN_ENCODING, 0, in schannel_acquire_credential_handle()
682 CertCloseStore(cert_store, 0); in schannel_acquire_credential_handle()
687 cert_store = in schannel_acquire_credential_handle()
692 if(!cert_store) { in schannel_acquire_credential_handle()
717 CertCloseStore(cert_store, 0); in schannel_acquire_credential_handle()
722 cert_store, X509_ASN_ENCODIN in schannel_acquire_credential_handle()
2814 Curl_schannel_set_cached_cert_store(struct Curl_cfilter *cf, const struct Curl_easy *data, HCERTSTORE cert_store) Curl_schannel_set_cached_cert_store() argument
[all...]
/third_party/node/src/crypto/
H A Dcrypto_context.cc715 X509_STORE* cert_store = SSL_CTX_get_cert_store(ctx_.get()); in SetCACert()
718 if (cert_store == GetOrCreateRootCertStore()) { in SetCACert()
719 cert_store = NewRootCertStore(); in SetCACert()
720 SSL_CTX_set_cert_store(ctx_.get(), cert_store); in SetCACert()
722 CHECK_EQ(1, X509_STORE_add_cert(cert_store, x509.get())); in SetCACert()
751 X509_STORE* cert_store = SSL_CTX_get_cert_store(ctx_.get()); in SetCRL() local
752 if (cert_store == GetOrCreateRootCertStore()) { in SetCRL()
753 cert_store = NewRootCertStore(); in SetCRL()
754 SSL_CTX_set_cert_store(ctx_.get(), cert_store); in SetCRL()
757 CHECK_EQ(1, X509_STORE_add_crl(cert_store, cr in SetCRL()
1038 X509_STORE* cert_store = SSL_CTX_get_cert_store(sc->ctx_.get()); LoadPKCS12() local
[all...]
/third_party/rust/crates/rust-openssl/openssl/src/ssl/
H A Dmod.rs805 pub fn set_verify_cert_store(&mut self, cert_store: X509Store) -> Result<(), ErrorStack> { in set_verify_cert_store()
807 let ptr = cert_store.as_ptr(); in set_verify_cert_store()
809 mem::forget(cert_store); in set_verify_cert_store()
817 pub fn set_cert_store(&mut self, cert_store: X509Store) { in set_cert_store()
819 ffi::SSL_CTX_set_cert_store(self.as_ptr(), cert_store.as_ptr()); in set_cert_store()
820 mem::forget(cert_store); in set_cert_store()
1285 pub fn cert_store(&self) -> &X509StoreBuilderRef { in cert_store() functions
1825 pub fn cert_store(&self) -> &X509StoreRef { in cert_store() functions
3366 pub fn set_verify_cert_store(&mut self, cert_store: X509Store) -> Result<(), ErrorStack> { in set_verify_cert_store()
3368 cvt(ffi::SSL_set0_verify_cert_store(self.as_ptr(), cert_store in set_verify_cert_store()
[all...]
/third_party/node/deps/openssl/openssl/ssl/
H A Dssl_lib.c3383 ret->cert_store = X509_STORE_new(); in SSL_CTX_new_ex()
3384 if (ret->cert_store == NULL) in SSL_CTX_new_ex()
3581 X509_STORE_free(a->cert_store); in SSL_CTX_free()
4505 return X509_STORE_set_default_paths_ex(ctx->cert_store, ctx->libctx, in SSL_CTX_set_default_verify_paths()
4513 lookup = X509_STORE_add_lookup(ctx->cert_store, X509_LOOKUP_hash_dir()); in SSL_CTX_set_default_verify_dir()
4531 lookup = X509_STORE_add_lookup(ctx->cert_store, X509_LOOKUP_file()); in SSL_CTX_set_default_verify_file()
4550 lookup = X509_STORE_add_lookup(ctx->cert_store, X509_LOOKUP_store()); in SSL_CTX_set_default_verify_store()
4566 return X509_STORE_load_file_ex(ctx->cert_store, CAfile, ctx->libctx, in SSL_CTX_load_verify_file()
4572 return X509_STORE_load_path(ctx->cert_store, CApath); in SSL_CTX_load_verify_dir()
4577 return X509_STORE_load_store_ex(ctx->cert_store, CAstor in SSL_CTX_load_verify_store()
[all...]
H A Dssl_cert.c396 verify_store = s->ctx->cert_store; in ssl_verify_cert_chain()
906 chain_store = s->ctx->cert_store; in ssl_build_cert_chain()
908 chain_store = ctx->cert_store; in ssl_build_cert_chain()
/third_party/openssl/ssl/
H A Dssl_lib.c3283 ret->cert_store = X509_STORE_new(); in SSL_CTX_new_ex()
3284 if (ret->cert_store == NULL) in SSL_CTX_new_ex()
3481 X509_STORE_free(a->cert_store); in SSL_CTX_free()
4386 return X509_STORE_set_default_paths_ex(ctx->cert_store, ctx->libctx, in SSL_CTX_set_default_verify_paths()
4394 lookup = X509_STORE_add_lookup(ctx->cert_store, X509_LOOKUP_hash_dir()); in SSL_CTX_set_default_verify_dir()
4412 lookup = X509_STORE_add_lookup(ctx->cert_store, X509_LOOKUP_file()); in SSL_CTX_set_default_verify_file()
4431 lookup = X509_STORE_add_lookup(ctx->cert_store, X509_LOOKUP_store()); in SSL_CTX_set_default_verify_store()
4447 return X509_STORE_load_file_ex(ctx->cert_store, CAfile, ctx->libctx, in SSL_CTX_load_verify_file()
4453 return X509_STORE_load_path(ctx->cert_store, CApath); in SSL_CTX_load_verify_dir()
4458 return X509_STORE_load_store_ex(ctx->cert_store, CAstor in SSL_CTX_load_verify_store()
[all...]
H A Dssl_cert.c396 verify_store = s->ctx->cert_store; in ssl_verify_cert_chain()
906 chain_store = s->ctx->cert_store; in ssl_build_cert_chain()
908 chain_store = ctx->cert_store; in ssl_build_cert_chain()
/third_party/rust/crates/rust-openssl/openssl-sys/src/handwritten/
H A Dtypes.rs783 cert_store: *mut c_void,
801 cert_store: *mut c_void,
871 cert_store: *mut c_void,
/third_party/openssl/ohos_lite/include/openssl/
H A Dpkcs7.h247 int PKCS7_dataVerify(X509_STORE *cert_store, X509_STORE_CTX *ctx,
/third_party/node/deps/openssl/openssl/crypto/pkcs7/
H A 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/crypto/pkcs7/
H A 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/node/deps/openssl/config/archs/linux-armv4/asm_avx2/include/openssl/
H A Dpkcs7.h347 int PKCS7_dataVerify(X509_STORE *cert_store, X509_STORE_CTX *ctx,
/third_party/node/deps/openssl/config/archs/linux-elf/asm/include/openssl/
H A Dpkcs7.h347 int PKCS7_dataVerify(X509_STORE *cert_store, X509_STORE_CTX *ctx,
/third_party/node/deps/openssl/config/archs/darwin64-arm64-cc/asm/include/openssl/
H A Dpkcs7.h347 int PKCS7_dataVerify(X509_STORE *cert_store, X509_STORE_CTX *ctx,
/third_party/node/deps/openssl/config/archs/linux-aarch64/asm/include/openssl/
H A Dpkcs7.h347 int PKCS7_dataVerify(X509_STORE *cert_store, X509_STORE_CTX *ctx,
/third_party/node/deps/openssl/config/archs/darwin64-x86_64-cc/no-asm/include/openssl/
H A Dpkcs7.h347 int PKCS7_dataVerify(X509_STORE *cert_store, X509_STORE_CTX *ctx,
/third_party/node/deps/openssl/config/archs/linux-aarch64/no-asm/include/openssl/
H A Dpkcs7.h347 int PKCS7_dataVerify(X509_STORE *cert_store, X509_STORE_CTX *ctx,
/third_party/node/deps/openssl/config/archs/linux-armv4/asm/include/openssl/
H A Dpkcs7.h347 int PKCS7_dataVerify(X509_STORE *cert_store, X509_STORE_CTX *ctx,
/third_party/node/deps/openssl/config/archs/darwin-i386-cc/no-asm/include/openssl/
H A Dpkcs7.h347 int PKCS7_dataVerify(X509_STORE *cert_store, X509_STORE_CTX *ctx,
/third_party/node/deps/openssl/config/archs/BSD-x86/asm_avx2/include/openssl/
H A Dpkcs7.h347 int PKCS7_dataVerify(X509_STORE *cert_store, X509_STORE_CTX *ctx,
/third_party/node/deps/openssl/config/archs/BSD-x86/no-asm/include/openssl/
H A Dpkcs7.h347 int PKCS7_dataVerify(X509_STORE *cert_store, X509_STORE_CTX *ctx,
/third_party/node/deps/openssl/config/archs/BSD-x86_64/asm/include/openssl/
H A Dpkcs7.h347 int PKCS7_dataVerify(X509_STORE *cert_store, X509_STORE_CTX *ctx,
/third_party/node/deps/openssl/config/archs/BSD-x86_64/asm_avx2/include/openssl/
H A Dpkcs7.h347 int PKCS7_dataVerify(X509_STORE *cert_store, X509_STORE_CTX *ctx,
/third_party/node/deps/openssl/config/archs/BSD-x86/asm/include/openssl/
H A Dpkcs7.h347 int PKCS7_dataVerify(X509_STORE *cert_store, X509_STORE_CTX *ctx,

Completed in 45 milliseconds

123