Home
last modified time | relevance | path

Searched refs:ssl_opts (Results 1 – 9 of 9) sorted by relevance

/third_party/grpc/test/cpp/util/
Dtest_credentials_provider.cc93 SslCredentialsOptions ssl_opts = {test_root_cert, "", ""}; in GetChannelCredentials() local
95 return grpc::SslCredentials(ssl_opts); in GetChannelCredentials()
119 SslServerCredentialsOptions ssl_opts; in GetServerCredentials() local
120 ssl_opts.pem_root_certs = ""; in GetServerCredentials()
124 ssl_opts.pem_key_cert_pairs.push_back(pkcp); in GetServerCredentials()
128 ssl_opts.pem_key_cert_pairs.push_back(pkcp); in GetServerCredentials()
130 return SslServerCredentials(ssl_opts); in GetServerCredentials()
Dgrpc_tool_test.cc140 SslCredentialsOptions ssl_opts = {test_root_cert, "", ""}; in GetChannelCredentials() local
142 grpc::SslCredentials(grpc::SslCredentialsOptions(ssl_opts)); in GetChannelCredentials()
274 SslServerCredentialsOptions ssl_opts; in SetUpServer() local
275 ssl_opts.pem_root_certs = ""; in SetUpServer()
276 ssl_opts.pem_key_cert_pairs.push_back(pkcp); in SetUpServer()
277 creds = SslServerCredentials(ssl_opts); in SetUpServer()
/third_party/nghttp2/src/
Dasio_server_tls_context.cc67 auto ssl_opts = (SSL_OP_ALL & ~SSL_OP_DONT_INSERT_EMPTY_FRAGMENTS) | in configure_tls_context_easy() local
73 SSL_CTX_set_options(ctx, ssl_opts); in configure_tls_context_easy()
Dshrpx_connection.cc368 auto ssl_opts = SSL_get_options(tls.ssl); in tls_handshake() local
375 if (ssl_opts & SSL_OP_NO_TICKET) { in tls_handshake()
Dshrpx_tls.cc797 constexpr auto ssl_opts = in create_ssl_context() local
816 SSL_CTX_set_options(ssl_ctx, ssl_opts | tlsconf.tls_proto_mask); in create_ssl_context()
1107 constexpr auto ssl_opts = (SSL_OP_ALL & ~SSL_OP_DONT_INSERT_EMPTY_FRAGMENTS) | in create_ssl_client_context() local
1114 SSL_CTX_set_options(ssl_ctx, ssl_opts | tlsconf.tls_proto_mask); in create_ssl_client_context()
DHttpServer.cc2114 auto ssl_opts = (SSL_OP_ALL & ~SSL_OP_DONT_INSERT_EMPTY_FRAGMENTS) | in run() local
2120 SSL_CTX_set_options(ssl_ctx, ssl_opts); in run()
Dh2load.cc2472 auto ssl_opts = (SSL_OP_ALL & ~SSL_OP_DONT_INSERT_EMPTY_FRAGMENTS) | in main() local
2476 SSL_CTX_set_options(ssl_ctx, ssl_opts); in main()
Dnghttp.cc2278 auto ssl_opts = (SSL_OP_ALL & ~SSL_OP_DONT_INSERT_EMPTY_FRAGMENTS) | in communicate() local
2282 SSL_CTX_set_options(ssl_ctx, ssl_opts); in communicate()
/third_party/grpc/test/cpp/ios/CronetTests/
DCppCronetEnd2EndTests.mm70 grpc::SslServerCredentialsOptions ssl_opts;
72 ssl_opts.pem_root_certs = "";
74 ssl_opts.pem_key_cert_pairs.push_back(pkcp);
75 auto server_creds = SslServerCredentials(ssl_opts);