HomeSort by relevance Sort by last modified time
    Searched refs:pem_root_certs (Results 1 - 25 of 25) sorted by null

  /external/grpc-grpc/src/core/lib/security/credentials/ssl/
ssl_credentials.cc 49 gpr_free(c->config.pem_root_certs);
92 static void ssl_build_config(const char* pem_root_certs,
96 if (pem_root_certs != nullptr) {
97 config->pem_root_certs = gpr_strdup(pem_root_certs);
119 const char* pem_root_certs, grpc_ssl_pem_key_cert_pair* pem_key_cert_pair,
124 "grpc_ssl_credentials_create(pem_root_certs=%s, "
128 4, (pem_root_certs, pem_key_cert_pair, verify_options, reserved));
133 ssl_build_config(pem_root_certs, pem_key_cert_pair, verify_options,
153 gpr_free(c->config.pem_root_certs);
    [all...]
ssl_credentials.h 33 char* pem_root_certs; member in struct:grpc_ssl_server_certificate_config
  /external/grpc-grpc/src/php/ext/grpc/
server_credentials.c 59 * @param string pem_root_certs PEM encoding of the server root certificates
65 char *pem_root_certs = 0; local
74 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s!ss", &pem_root_certs,
85 pem_root_certs, &pem_key_cert_pair, 1,
92 ZEND_ARG_INFO(0, pem_root_certs)
channel_credentials.c 36 char **pem_root_certs) {
38 *pem_root_certs = NULL;
41 *pem_root_certs = gpr_strdup(default_pem_root_certs);
116 * @param string $pem_root_certs PEM encoding of the server root certificates
124 char *pem_root_certs = NULL; local
137 &pem_root_certs, &root_certs_length,
150 strcpy(hashkey, pem_root_certs);
160 pem_root_certs,
221 ZEND_ARG_INFO(0, pem_root_certs)
  /external/grpc-grpc/src/ruby/ext/grpc/
rb_channel_credentials.c 38 static char* pem_root_certs = NULL; variable
118 /* The attribute used on the mark object to hold the pem_root_certs. */
131 creds2 = Credentials.new(pem_root_certs)
133 creds3 = Credentials.new(pem_root_certs, pem_private_key,
135 pem_root_certs: (optional) PEM encoding of the server root certificate
141 VALUE pem_root_certs = Qnil; local
153 rb_scan_args(argc, argv, "03", &pem_root_certs, &pem_private_key,
158 if (pem_root_certs != Qnil) {
159 pem_root_certs_cstr = RSTRING_PTR(pem_root_certs);
178 rb_ivar_set(self, id_pem_root_certs, pem_root_certs);
    [all...]
rb_server_credentials.c 100 /* The attribute used on the mark object to preserve the pem_root_certs. */
118 creds = ServerCredentials.new(pem_root_certs,
123 pem_root_certs: (optional) PEM encoding of the server root certificate
128 static VALUE grpc_rb_server_credentials_init(VALUE self, VALUE pem_root_certs,
195 if (pem_root_certs == Qnil) {
199 creds = grpc_ssl_server_credentials_create_ex(RSTRING_PTR(pem_root_certs),
212 rb_ivar_set(self, id_pem_root_certs, pem_root_certs);
rb_grpc_imports.generated.h 338 typedef grpc_channel_credentials*(*grpc_ssl_credentials_create_type)(const char* pem_root_certs, grpc_ssl_pem_key_cert_pair* pem_key_cert_pair, const verify_peer_options* verify_options, void* reserved);
377 typedef grpc_ssl_server_certificate_config*(*grpc_ssl_server_certificate_config_create_type)(const char* pem_root_certs, const grpc_ssl_pem_key_cert_pair* pem_key_cert_pairs, size_t num_key_cert_pairs);
383 typedef grpc_server_credentials*(*grpc_ssl_server_credentials_create_type)(const char* pem_root_certs, grpc_ssl_pem_key_cert_pair* pem_key_cert_pairs, size_t num_key_cert_pairs, int force_client_auth, void* reserved);
386 typedef grpc_server_credentials*(*grpc_ssl_server_credentials_create_ex_type)(const char* pem_root_certs, grpc_ssl_pem_key_cert_pair* pem_key_cert_pairs, size_t num_key_cert_pairs, grpc_ssl_client_certificate_request_type client_certificate_request, void* reserved);
    [all...]
  /external/grpc-grpc/src/python/grpcio/grpc/_cython/_cygrpc/
credentials.pyx.pxi 208 cdef const char* _get_c_pem_root_certs(pem_root_certs):
209 if pem_root_certs is None:
212 return pem_root_certs
231 def server_credentials_ssl(pem_root_certs, pem_key_cert_pairs,
233 pem_root_certs = str_to_bytes(pem_root_certs)
236 credentials.references.append(pem_root_certs)
238 cdef const char * c_pem_root_certs = _get_c_pem_root_certs(pem_root_certs)
256 def server_certificate_config_ssl(pem_root_certs, pem_key_cert_pairs):
257 pem_root_certs = str_to_bytes(pem_root_certs
    [all...]
security.pyx.pxi 21 char **pem_root_certs) nogil:
25 pem_root_certs[0] = <char *>gpr_malloc(len(temporary_pem_root_certs) + 1)
27 pem_root_certs[0], <char *>temporary_pem_root_certs,
29 pem_root_certs[0][len(temporary_pem_root_certs)] = '\0'
security.pxd.pxi 17 char **pem_root_certs) nogil
  /external/grpc-grpc/src/core/tsi/
ssl_transport_security.h 110 const char* pem_root_certs, const char* cipher_suites,
121 const char* pem_root_certs; member in struct:__anon23274
186 - pem_root_certs is the NULL-terminated string containing the PEM encoding
231 /* pem_root_certs is the NULL-terminated string containing the PEM encoding
ssl_transport_security.cc     [all...]
  /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,
108 if (secure_peer_name != nullptr && pem_root_certs == nullptr) {
124 options.pem_root_certs = pem_root_certs;
174 const char* pem_root_certs = local
188 pem_root_certs, root_store, host, &sc) == GRPC_SECURITY_OK);
  /external/grpc-grpc/include/grpc/
grpc_security.h 145 char** pem_root_certs);
187 - pem_root_certs is the NULL-terminated string containing the PEM encoding
205 const char* pem_root_certs, grpc_ssl_pem_key_cert_pair* pem_key_cert_pair,
392 const char* pem_root_certs,
420 with an SSL cert. Note that this option is ignored if pem_root_certs is
423 const char* pem_root_certs, grpc_ssl_pem_key_cert_pair* pem_key_cert_pairs,
431 const char* pem_root_certs, grpc_ssl_pem_key_cert_pair* pem_key_cert_pairs,
  /external/grpc-grpc/include/grpcpp/security/
server_credentials.h 70 grpc::string pem_root_certs; member in struct:grpc::SslServerCredentialsOptions
credentials.h 100 grpc::string pem_root_certs; member in struct:grpc::SslCredentialsOptions
  /external/grpc-grpc/src/core/lib/security/security_connector/
security_connector.h 195 char* pem_root_certs; member in struct:__anon23211
207 is not NULL, then, pem_root_certs should not be NULL either.
224 char* pem_root_certs; member in struct:__anon23212
security_connector.cc 727 cert_pairs, config->num_key_cert_pairs, config->pem_root_certs,
1210 char* pem_root_certs = nullptr; local
    [all...]
  /external/grpc-grpc/src/cpp/server/
secure_server_credentials.cc 118 options.pem_root_certs.empty() ? nullptr : options.pem_root_certs.c_str(),
  /external/grpc-grpc/src/csharp/ext/
grpc_csharp_ext.c 909 char** pem_root_certs) {
911 *pem_root_certs = NULL;
914 *pem_root_certs = gpr_strdup(default_pem_root_certs);
919 grpcsharp_override_default_ssl_roots(const char* pem_root_certs) {
926 default_pem_root_certs = gpr_strdup(pem_root_certs);
931 grpcsharp_ssl_credentials_create(const char* pem_root_certs,
938 return grpc_ssl_credentials_create(pem_root_certs, &key_cert_pair, NULL,
943 return grpc_ssl_credentials_create(pem_root_certs, NULL, NULL, NULL);
    [all...]
  /external/grpc-grpc/test/core/security/
security_connector_test.cc 333 char** pem_root_certs) {
334 *pem_root_certs = gpr_strdup(roots_for_override_api);
339 char** pem_root_certs) {
  /external/grpc-grpc/test/cpp/util/
test_credentials_provider.cc 92 ssl_opts.pem_root_certs = "";
grpc_tool_test.cc 233 ssl_opts.pem_root_certs = "";
  /external/grpc-grpc/src/cpp/client/
secure_credentials.cc 85 options.pem_root_certs.empty() ? nullptr : options.pem_root_certs.c_str(),
  /external/grpc-grpc/test/core/tsi/
ssl_transport_security_test.cc 111 client_options.pem_root_certs = key_cert_lib->root_cert;
685 options.pem_root_certs = cert_chain;
767 options.pem_root_certs = cert_chain;
    [all...]

Completed in 417 milliseconds