HomeSort by relevance Sort by last modified time
    Searched defs:root_store (Results 1 - 5 of 5) sorted by null

  /external/grpc-grpc/src/core/lib/http/
httpcli_security_connector.cc 103 const char* pem_root_certs, const tsi_ssl_root_certs_store* root_store,
125 options.root_store = root_store;
176 const tsi_ssl_root_certs_store* root_store = local
178 if (root_store == nullptr) {
188 pem_root_certs, root_store, host, &sc) == GRPC_SECURITY_OK);
  /external/grpc-grpc/src/core/tsi/
ssl_transport_security.h 122 /* root_store is a pointer to the ssl_root_certs_store object. If root_store
123 is not nullptr and SSL implementation permits, root_store will be used as
126 const tsi_ssl_root_certs_store* root_store; member in struct:__anon23274
ssl_transport_security.cc 771 tsi_ssl_root_certs_store* root_store = static_cast<tsi_ssl_root_certs_store*>( local
773 if (root_store == nullptr) {
777 root_store->store = X509_STORE_new();
778 if (root_store->store == nullptr) {
780 gpr_free(root_store);
783 tsi_result result = x509_store_load_certs(root_store->store, pem_roots,
787 X509_STORE_free(root_store->store);
788 gpr_free(root_store);
791 return root_store;
    [all...]
  /external/grpc-grpc/test/core/security/
security_connector_test.cc 422 const tsi_ssl_root_certs_store* root_store = local
424 GPR_ASSERT(root_store == nullptr);
  /external/grpc-grpc/test/core/tsi/
ssl_transport_security_test.cc 77 tsi_ssl_root_certs_store* root_store; member in struct:ssl_key_cert_lib
124 client_options.root_store =
125 key_cert_lib->use_root_store ? key_cert_lib->root_store : nullptr;
359 tsi_ssl_root_certs_store_destroy(key_cert_lib->root_store);
433 key_cert_lib->root_store =
435 GPR_ASSERT(key_cert_lib->root_store != nullptr);
    [all...]

Completed in 118 milliseconds