Home
last modified time | relevance | path

Searched refs:X509_STORE_load_path (Results 1 – 4 of 4) sorted by relevance

/ohos5.0/foundation/communication/netstack/frameworks/native/tls_socket/src/
H A Dtls_context_server.cpp179 if (!X509_STORE_load_path(SSL_CTX_get_cert_store(tlsContext->ctx_), path.c_str())) { in SetDefaultCa()
188 … if (!X509_STORE_load_path(SSL_CTX_get_cert_store(tlsContext->ctx_), ROOT_CERT_PATH.c_str())) { in SetDefaultCa()
198 if (!X509_STORE_load_path(SSL_CTX_get_cert_store(tlsContext->ctx_), userCertPath.c_str())) { in SetDefaultCa()
205 …if (!X509_STORE_load_path(SSL_CTX_get_cert_store(tlsContext->ctx_), SYSTEM_REPLACE_CA_PATH.c_str()… in SetDefaultCa()
H A Dtls_context.cpp180 if (!X509_STORE_load_path(SSL_CTX_get_cert_store(tlsContext->ctx_), path.c_str())) { in SetDefaultCa()
188 … if (!X509_STORE_load_path(SSL_CTX_get_cert_store(tlsContext->ctx_), ROOT_CERT_PATH.c_str())) { in SetDefaultCa()
198 if (!X509_STORE_load_path(SSL_CTX_get_cert_store(tlsContext->ctx_), userCertPath.c_str())) { in SetDefaultCa()
205 …if (!X509_STORE_load_path(SSL_CTX_get_cert_store(tlsContext->ctx_), SYSTEM_REPLACE_CA_PATH.c_str()… in SetDefaultCa()
/ohos5.0/commonlibrary/rust/ylong_http/ylong_http_client/src/util/c_openssl/
H A Dx509.rs26 use super::ffi::x509::X509_STORE_load_path;
227 check_ret(unsafe { X509_STORE_load_path(self.as_ptr(), path.as_ptr() as *const _) }) in add_path()
/ohos5.0/commonlibrary/rust/ylong_http/ylong_http_client/src/util/c_openssl/ffi/
H A Dx509.rs101 pub(crate) fn X509_STORE_load_path(store: *mut X509_STORE, x: *const c_char) -> c_int; in X509_STORE_load_path() function