/third_party/node/deps/npm/lib/auth/ |
D | legacy.js | 15 const loginPrompter = (creds) => { argument 17 return read.username('Username:', creds.username, opts).then((u) => { 18 creds.username = u 19 return read.password('Password:', creds.password) 21 creds.password = p 22 return read.email('Email: (this IS public) ', creds.email, opts) 24 creds.email = e 25 return creds 31 creds: {}, property 37 module.exports.login = (creds = {}, registry, scope, cb) => { argument [all …]
|
/third_party/glib/gio/tests/ |
D | credentials.c | 31 GCredentials *creds = g_credentials_new (); in test_basic() local 42 g_assert (creds != NULL); in test_basic() 46 g_assert (g_credentials_is_same_user (creds, other, &error)); in test_basic() 54 g_assert_cmpuint (g_credentials_get_unix_user (creds, &error), ==, in test_basic() 59 g_assert_cmpint (g_credentials_get_unix_pid (creds, &error), ==, in test_basic() 63 g_assert_cmpint (g_credentials_get_unix_pid (creds, &error), ==, -1); in test_basic() 74 g_assert (!g_credentials_is_same_user (creds, other, &error)); in test_basic() 82 g_assert (g_credentials_is_same_user (creds, other, &error)); in test_basic() 86 stringified = g_credentials_to_string (creds); in test_basic() 96 struct ucred *native = g_credentials_get_native (creds, in test_basic() [all …]
|
/third_party/grpc/src/core/lib/security/credentials/ |
D | credentials.cc | 42 void grpc_channel_credentials_release(grpc_channel_credentials* creds) { in grpc_channel_credentials_release() argument 43 GRPC_API_TRACE("grpc_channel_credentials_release(creds=%p)", 1, (creds)); in grpc_channel_credentials_release() 45 if (creds) creds->Unref(); in grpc_channel_credentials_release() 48 void grpc_call_credentials_release(grpc_call_credentials* creds) { in grpc_call_credentials_release() argument 49 GRPC_API_TRACE("grpc_call_credentials_release(creds=%p)", 1, (creds)); in grpc_call_credentials_release() 51 if (creds) creds->Unref(); in grpc_call_credentials_release() 98 void grpc_server_credentials_release(grpc_server_credentials* creds) { in grpc_server_credentials_release() argument 99 GRPC_API_TRACE("grpc_server_credentials_release(creds=%p)", 1, (creds)); in grpc_server_credentials_release() 101 if (creds) creds->Unref(); in grpc_server_credentials_release() 116 grpc_server_credentials* creds, grpc_auth_metadata_processor processor) { in grpc_server_credentials_set_auth_metadata_processor() argument [all …]
|
/third_party/grpc/test/core/security/ |
D | credentials_test.cc | 324 grpc_call_credentials* creds; member 388 static void run_request_metadata_test(grpc_call_credentials* creds, in run_request_metadata_test() argument 392 if (creds->get_request_metadata(&state->pollent, auth_md_ctx, in run_request_metadata_test() 409 grpc_call_credentials* creds = grpc_google_iam_credentials_create( in test_google_iam_creds() local 413 GPR_ASSERT(creds->min_security_level() == GRPC_PRIVACY_AND_INTEGRITY); in test_google_iam_creds() 416 run_request_metadata_test(creds, auth_md_ctx, state); in test_google_iam_creds() 417 creds->Unref(); in test_google_iam_creds() 425 grpc_call_credentials* creds = in test_access_token_creds() local 429 GPR_ASSERT(strcmp(creds->type(), GRPC_CALL_CREDENTIALS_TYPE_OAUTH2) == 0); in test_access_token_creds() 431 GPR_ASSERT(creds->min_security_level() == GRPC_PRIVACY_AND_INTEGRITY); in test_access_token_creds() [all …]
|
D | fetch_oauth2.cc | 80 grpc_call_credentials* creds = nullptr; in main() local 118 creds = grpc_google_compute_engine_credentials_create(nullptr); in main() 119 if (creds == nullptr) { in main() 124 creds = create_refresh_token_creds(json_refresh_token_file_path); in main() 125 if (creds == nullptr) { in main() 133 creds = create_sts_creds(json_sts_options_file_path); in main() 134 if (creds == nullptr) { in main() 147 GPR_ASSERT(creds != nullptr); in main() 149 token = grpc_test_fetch_oauth2_token_with_credentials(creds); in main() 154 grpc_call_credentials_release(creds); in main()
|
/third_party/grpc/test/cpp/util/ |
D | create_test_channel.cc | 91 const std::shared_ptr<CallCredentials>& creds, in CreateTestChannel() argument 94 creds, args, in CreateTestChannel() 101 const std::shared_ptr<CallCredentials>& creds, in CreateTestChannel() argument 104 use_prod_roots, creds, args, in CreateTestChannel() 111 const std::shared_ptr<CallCredentials>& creds) { in CreateTestChannel() argument 113 use_prod_roots, creds, ChannelArguments()); in CreateTestChannel() 131 const std::shared_ptr<CallCredentials>& creds) { in CreateTestChannel() argument 138 if (creds.get()) { in CreateTestChannel() 139 channel_creds = grpc::CompositeChannelCredentials(channel_creds, creds); in CreateTestChannel() 147 const std::shared_ptr<CallCredentials>& creds, const ChannelArguments& args, in CreateTestChannel() argument [all …]
|
D | create_test_channel.h | 52 const std::shared_ptr<CallCredentials>& creds); 57 const std::shared_ptr<CallCredentials>& creds, 63 const std::shared_ptr<CallCredentials>& creds, 68 const std::shared_ptr<CallCredentials>& creds); 73 const std::shared_ptr<CallCredentials>& creds, 81 const std::shared_ptr<CallCredentials>& creds, const ChannelArguments& args, 89 const std::shared_ptr<CallCredentials>& creds, const ChannelArguments& args, 96 const std::shared_ptr<CallCredentials>& creds,
|
/third_party/grpc/src/cpp/client/ |
D | create_channel.cc | 32 const std::shared_ptr<grpc::ChannelCredentials>& creds) { in CreateChannel() argument 33 return CreateCustomChannel(target, creds, grpc::ChannelArguments()); in CreateChannel() 38 const std::shared_ptr<grpc::ChannelCredentials>& creds, in CreateCustomChannel() argument 42 return creds ? creds->CreateChannelImpl(target, args) in CreateCustomChannel() 67 const std::shared_ptr<grpc::ChannelCredentials>& creds, in CreateCustomChannelWithInterceptors() argument 74 return creds ? creds->CreateChannelWithInterceptors( in CreateCustomChannelWithInterceptors()
|
/third_party/grpc/test/cpp/interop/ |
D | client_helper.cc | 65 std::shared_ptr<CallCredentials> creds = GoogleComputeEngineCredentials(); in GetOauth2AccessToken() local 67 dynamic_cast<SecureCallCredentials*>(creds.get()); in GetOauth2AccessToken() 92 std::shared_ptr<CallCredentials> creds; in CreateChannelForTestCase() local 94 creds = FLAGS_custom_credentials_type == "google_default_credentials" in CreateChannelForTestCase() 100 creds = FLAGS_custom_credentials_type == "google_default_credentials" in CreateChannelForTestCase() 105 creds = FLAGS_custom_credentials_type == "google_default_credentials" in CreateChannelForTestCase() 114 creds, channel_args); in CreateChannelForTestCase() 120 security_type, !FLAGS_use_test_ca, creds, in CreateChannelForTestCase() 124 return CreateTestChannel(host_port, FLAGS_custom_credentials_type, creds); in CreateChannelForTestCase() 126 return CreateTestChannel(host_port, FLAGS_custom_credentials_type, creds, in CreateChannelForTestCase()
|
/third_party/grpc/src/ruby/ext/grpc/ |
D | rb_channel_credentials.c | 151 grpc_channel_credentials* creds = NULL; in grpc_rb_channel_credentials_init() local 166 creds = grpc_ssl_credentials_create(pem_root_certs_cstr, NULL, NULL, NULL); in grpc_rb_channel_credentials_init() 179 creds = grpc_ssl_credentials_create(pem_root_certs_cstr, &key_cert_pair, in grpc_rb_channel_credentials_init() 182 if (creds == NULL) { in grpc_rb_channel_credentials_init() 186 wrapper->wrapped = creds; in grpc_rb_channel_credentials_init() 198 grpc_channel_credentials* creds; in grpc_rb_channel_credentials_compose() local 207 creds = grpc_rb_get_wrapped_channel_credentials(self); in grpc_rb_channel_credentials_compose() 211 creds = grpc_composite_channel_credentials_create(creds, other, NULL); in grpc_rb_channel_credentials_compose() 215 prev = creds; in grpc_rb_channel_credentials_compose() 217 if (creds == NULL) { in grpc_rb_channel_credentials_compose() [all …]
|
/third_party/grpc/src/core/ext/filters/client_channel/xds/ |
D | xds_channel_secure.cc | 71 grpc_channel_credentials* creds = nullptr; in CreateXdsChannel() local 76 creds = grpc_google_default_credentials_create(); in CreateXdsChannel() 79 creds = grpc_fake_transport_security_credentials_create(); in CreateXdsChannel() 83 if (creds == nullptr) { in CreateXdsChannel() 88 creds_to_unref.reset(creds); in CreateXdsChannel() 90 creds = grpc_channel_credentials_find_in_args(&args); in CreateXdsChannel() 91 if (creds == nullptr) { in CreateXdsChannel() 101 creds, bootstrap.server().server_uri.c_str(), new_args, nullptr); in CreateXdsChannel()
|
/third_party/grpc/src/php/ext/grpc/ |
D | channel.c | 242 wrapped_grpc_channel_credentials *creds) { in create_channel() argument 243 if (creds == NULL) { in create_channel() 248 grpc_secure_channel_create(creds->wrapped, target, &args, NULL); in create_channel() 259 wrapped_grpc_channel_credentials *creds, in create_and_add_channel_to_persistent_list() argument 272 create_channel(channel, target, args, creds); in create_and_add_channel_to_persistent_list() 289 create_channel(channel, target, args, creds); in create_and_add_channel_to_persistent_list() 329 wrapped_grpc_channel_credentials *creds = NULL; in PHP_METHOD() local 346 creds = NULL; in PHP_METHOD() 354 creds = PHP_GRPC_GET_WRAPPED_OBJECT(wrapped_grpc_channel_credentials, in PHP_METHOD() 412 if (creds != NULL && creds->hashstr != NULL) { in PHP_METHOD() [all …]
|
/third_party/grpc/src/ruby/end2end/ |
D | call_credentials_timeout_test.rb | 30 creds = files.map { |f| File.open(File.join(test_root, f)).read } 31 GRPC::Core::ChannelCredentials.new(creds[0], creds[1], creds[2]) 45 creds = files.map { |f| File.open(File.join(test_root, f)).read } 47 creds[0], 48 [{ private_key: creds[1], cert_chain: creds[2] }],
|
D | call_credentials_timeout_driver.rb | 30 creds = files.map { |f| File.open(File.join(test_root, f)).read } 31 GRPC::Core::ChannelCredentials.new(creds[0], creds[1], creds[2]) 45 creds = files.map { |f| File.open(File.join(test_root, f)).read } 47 creds[0], 48 [{ private_key: creds[1], cert_chain: creds[2] }],
|
D | call_credentials_returning_bad_metadata_doesnt_kill_background_thread_test.rb | 30 creds = files.map { |f| File.open(File.join(test_root, f)).read } 31 GRPC::Core::ChannelCredentials.new(creds[0], creds[1], creds[2]) 45 creds = files.map { |f| File.open(File.join(test_root, f)).read } 47 creds[0], 48 [{ private_key: creds[1], cert_chain: creds[2] }],
|
D | call_credentials_returning_bad_metadata_doesnt_kill_background_thread_driver.rb | 30 creds = files.map { |f| File.open(File.join(test_root, f)).read } 31 GRPC::Core::ChannelCredentials.new(creds[0], creds[1], creds[2]) 45 creds = files.map { |f| File.open(File.join(test_root, f)).read } 47 creds[0], 48 [{ private_key: creds[1], cert_chain: creds[2] }],
|
/third_party/grpc/src/ruby/spec/ |
D | client_auth_spec.rb | 20 creds = files.map { |f| File.open(File.join(test_root, f)).read } 21 GRPC::Core::ChannelCredentials.new(creds[0], creds[1], creds[2]) 35 creds = files.map { |f| File.open(File.join(test_root, f)).read } 37 creds[0], 38 [{ private_key: creds[1], cert_chain: creds[2] }],
|
/third_party/libwebsockets/minimal-examples/embedded/esp32/esp-c3dev/main/ |
D | devices.c | 130 lws_wifi_creds_t creds; in init_plat_devices() 132 memset(&creds, 0, sizeof(creds)); in init_plat_devices() 134 lws_strncpy(creds.ssid, "xxx", sizeof(creds.ssid)); in init_plat_devices() 135 lws_strncpy(creds.passphrase, "xxx", sizeof(creds.passphrase)); in init_plat_devices() 136 lws_dll2_add_tail(&creds.list, &netdevs->owner_creds); in init_plat_devices()
|
/third_party/libwebsockets/minimal-examples/embedded/esp32/esp-heltec-wb32/main/ |
D | devices.c | 146 lws_wifi_creds_t creds; in init_plat_devices() 148 memset(&creds, 0, sizeof(creds)); in init_plat_devices() 150 lws_strncpy(creds.ssid, "xxx", sizeof(creds.ssid)); in init_plat_devices() 151 lws_strncpy(creds.passphrase, "yyy", sizeof(creds.passphrase)); in init_plat_devices() 152 lws_dll2_add_tail(&creds.list, &netdevs->owner_creds); in init_plat_devices()
|
/third_party/grpc/src/core/ext/transport/chttp2/server/secure/ |
D | server_secure_chttp2.cc | 70 grpc_server_credentials* creds) { in grpc_server_add_secure_http2_port() argument 79 3, (server, addr, creds)); in grpc_server_add_secure_http2_port() 81 if (creds == nullptr) { in grpc_server_add_secure_http2_port() 98 grpc_arg arg_to_add = grpc_server_credentials_to_arg(creds); in grpc_server_add_secure_http2_port() 102 sc = creds->create_security_connector(nullptr); in grpc_server_add_secure_http2_port() 107 creds->type()) in grpc_server_add_secure_http2_port() 112 args_to_add[0] = grpc_server_credentials_to_arg(creds); in grpc_server_add_secure_http2_port()
|
/third_party/grpc/test/core/end2end/fixtures/ |
D | local_util.cc | 50 grpc_channel_credentials* creds = grpc_local_credentials_create(type); in grpc_end2end_local_chttp2_init_client_fullstack() local 53 f->client = grpc_secure_channel_create(creds, ffd->localaddr.c_str(), in grpc_end2end_local_chttp2_init_client_fullstack() 56 grpc_channel_credentials_release(creds); in grpc_end2end_local_chttp2_init_client_fullstack() 88 grpc_server_credentials* creds = grpc_local_server_credentials_create(type); in grpc_end2end_local_chttp2_init_server_fullstack() local 99 grpc_server_credentials_set_auth_metadata_processor(creds, processor); in grpc_end2end_local_chttp2_init_server_fullstack() 102 ffd->localaddr.c_str(), creds)); in grpc_end2end_local_chttp2_init_server_fullstack() 103 grpc_server_credentials_release(creds); in grpc_end2end_local_chttp2_init_server_fullstack()
|
D | h2_ssl.cc | 86 grpc_channel_credentials* creds) { in chttp2_init_client_secure_fullstack() argument 89 f->client = grpc_secure_channel_create(creds, ffd->localaddr.c_str(), in chttp2_init_client_secure_fullstack() 92 grpc_channel_credentials_release(creds); in chttp2_init_client_secure_fullstack() 123 grpc_ssl_credentials* creds = in chttp2_init_client_simple_ssl_secure_fullstack() local 127 creds->set_min_tls_version(ffd->tls_version); in chttp2_init_client_simple_ssl_secure_fullstack() 128 creds->set_max_tls_version(ffd->tls_version); in chttp2_init_client_simple_ssl_secure_fullstack() 168 grpc_ssl_server_credentials* creds = in chttp2_init_server_simple_ssl_secure_fullstack() local 172 creds->set_min_tls_version(ffd->tls_version); in chttp2_init_server_simple_ssl_secure_fullstack() 173 creds->set_max_tls_version(ffd->tls_version); in chttp2_init_server_simple_ssl_secure_fullstack()
|
/third_party/curl/tests/libtest/ |
D | stub_gssapi.c | 63 char creds[MAX_CREDS_LENGTH]; member 84 const char *creds = NULL; in gss_init_sec_context() local 103 creds = getenv("CURL_STUB_GSS_CREDS"); in gss_init_sec_context() 104 if(!creds || strlen(creds) >= MAX_CREDS_LENGTH) { in gss_init_sec_context() 110 if(ctx && strcmp(ctx->creds, creds)) { in gss_init_sec_context() 179 if(strstr(creds, "KRB5")) in gss_init_sec_context() 182 if(strstr(creds, "NTLM")) in gss_init_sec_context() 195 strcpy(ctx->creds, creds); in gss_init_sec_context() 209 used = snprintf(token, length, "%s:%s:%d:", creds, in gss_init_sec_context()
|
/third_party/gstreamer/gstplugins_bad/ext/gs/ |
D | gstgscommon.cpp | 64 google::cloud::StatusOr<std::shared_ptr<gcs::oauth2::Credentials>> creds; in gst_gs_create_client() local 66 creds = gcs::oauth2::CreateServiceAccountCredentialsFromJsonContents( in gst_gs_create_client() 72 creds = in gst_gs_create_client() 76 if (!creds) { in gst_gs_create_client() 82 service_account_email, creds.status().message().c_str()); in gst_gs_create_client() 88 creds.status().message().c_str()); in gst_gs_create_client() 93 gcs::ClientOptions client_options(std::move(creds.value())); in gst_gs_create_client()
|
/third_party/libwebsockets/minimal-examples/embedded/esp32/esp-wrover-kit/main/ |
D | devices.c | 192 lws_wifi_creds_t creds; in init_plat_devices() 194 memset(&creds, 0, sizeof(creds)); in init_plat_devices() 196 lws_strncpy(creds.ssid, "xxx", sizeof(creds.ssid)); in init_plat_devices() 197 lws_strncpy(creds.passphrase, "yyy", sizeof(creds.passphrase)); in init_plat_devices() 198 lws_dll2_add_tail(&creds.list, &netdevs->owner_creds); in init_plat_devices()
|