Home
last modified time | relevance | path

Searched refs:cred (Results 1 – 25 of 129) sorted by relevance

123456

/external/wpa_supplicant_8/src/wps/
Dwps_attr_process.c84 static int wps_process_cred_network_idx(struct wps_credential *cred, in wps_process_cred_network_idx() argument
99 static int wps_process_cred_ssid(struct wps_credential *cred, const u8 *ssid, in wps_process_cred_ssid() argument
113 if (ssid_len <= sizeof(cred->ssid)) { in wps_process_cred_ssid()
114 os_memcpy(cred->ssid, ssid, ssid_len); in wps_process_cred_ssid()
115 cred->ssid_len = ssid_len; in wps_process_cred_ssid()
122 static int wps_process_cred_auth_type(struct wps_credential *cred, in wps_process_cred_auth_type() argument
131 cred->auth_type = WPA_GET_BE16(auth_type); in wps_process_cred_auth_type()
133 cred->auth_type); in wps_process_cred_auth_type()
139 static int wps_process_cred_encr_type(struct wps_credential *cred, in wps_process_cred_encr_type() argument
148 cred->encr_type = WPA_GET_BE16(encr_type); in wps_process_cred_encr_type()
[all …]
Dwps_registrar.c1525 const struct wps_credential *cred) in wps_build_cred_network_idx() argument
1536 const struct wps_credential *cred) in wps_build_cred_ssid() argument
1540 cred->ssid, cred->ssid_len); in wps_build_cred_ssid()
1542 wpabuf_put_be16(msg, cred->ssid_len); in wps_build_cred_ssid()
1543 wpabuf_put_data(msg, cred->ssid, cred->ssid_len); in wps_build_cred_ssid()
1549 const struct wps_credential *cred) in wps_build_cred_auth_type() argument
1552 cred->auth_type); in wps_build_cred_auth_type()
1555 wpabuf_put_be16(msg, cred->auth_type); in wps_build_cred_auth_type()
1561 const struct wps_credential *cred) in wps_build_cred_encr_type() argument
1564 cred->encr_type); in wps_build_cred_encr_type()
[all …]
Dwps_enrollee.c704 static int wps_process_cred_e(struct wps_data *wps, const u8 *cred, in wps_process_cred_e() argument
712 os_memset(&wps->cred, 0, sizeof(wps->cred)); in wps_process_cred_e()
713 wpabuf_set(&msg, cred, cred_len); in wps_process_cred_e()
715 wps_process_cred(&attr, &wps->cred)) in wps_process_cred_e()
718 if (os_memcmp(wps->cred.mac_addr, wps->wps->dev.mac_addr, ETH_ALEN) != in wps_process_cred_e()
722 ")", MAC2STR(wps->cred.mac_addr), in wps_process_cred_e()
740 if (!(wps->cred.encr_type & in wps_process_cred_e()
742 if (wps->cred.encr_type & WPS_ENCR_WEP) { in wps_process_cred_e()
750 "invalid encr_type 0x%x", wps->cred.encr_type); in wps_process_cred_e()
755 wps->cred.cred_attr = cred - 4; in wps_process_cred_e()
[all …]
/external/wpa_supplicant_8/wpa_supplicant/
Dinterworking.c144 struct wpa_cred *cred; in cred_with_roaming_consortium() local
146 for (cred = wpa_s->conf->cred; cred; cred = cred->next) { in cred_with_roaming_consortium()
147 if (cred->num_home_ois) in cred_with_roaming_consortium()
149 if (cred->num_required_home_ois) in cred_with_roaming_consortium()
151 if (cred->num_roaming_consortiums) in cred_with_roaming_consortium()
160 struct wpa_cred *cred; in cred_with_3gpp() local
162 for (cred = wpa_s->conf->cred; cred; cred = cred->next) { in cred_with_3gpp()
163 if (cred->pcsc || cred->imsi) in cred_with_3gpp()
172 struct wpa_cred *cred; in cred_with_nai_realm() local
174 for (cred = wpa_s->conf->cred; cred; cred = cred->next) { in cred_with_nai_realm()
[all …]
Dconfig_file.c162 struct wpa_cred *cred; in wpa_config_read_cred() local
167 cred = os_zalloc(sizeof(*cred)); in wpa_config_read_cred()
168 if (cred == NULL) in wpa_config_read_cred()
170 cred->id = id; in wpa_config_read_cred()
171 cred->sim_num = DEFAULT_USER_SELECTED_SIM; in wpa_config_read_cred()
197 if (wpa_config_set_cred(cred, pos, pos2, *line) < 0) in wpa_config_read_cred()
208 wpa_config_free_cred(cred); in wpa_config_read_cred()
209 cred = NULL; in wpa_config_read_cred()
212 return cred; in wpa_config_read_cred()
306 struct wpa_cred *cred, *cred_tail, *cred_head; in wpa_config_read() local
[all …]
Dconfig.c2924 void wpa_config_free_cred(struct wpa_cred *cred) in wpa_config_free_cred() argument
2928 os_free(cred->realm); in wpa_config_free_cred()
2929 str_clear_free(cred->username); in wpa_config_free_cred()
2930 str_clear_free(cred->password); in wpa_config_free_cred()
2931 os_free(cred->ca_cert); in wpa_config_free_cred()
2932 os_free(cred->client_cert); in wpa_config_free_cred()
2933 os_free(cred->private_key); in wpa_config_free_cred()
2934 str_clear_free(cred->private_key_passwd); in wpa_config_free_cred()
2935 os_free(cred->engine_id); in wpa_config_free_cred()
2936 os_free(cred->ca_cert_id); in wpa_config_free_cred()
[all …]
Dwps_supplicant.c195 const struct wps_credential *cred) in wpas_wps_security_workaround() argument
217 bss = wpa_bss_get(wpa_s, cred->mac_addr, ssid->ssid, ssid->ssid_len); in wpas_wps_security_workaround()
376 const struct wps_credential *cred) in wpa_supplicant_wps_cred() argument
387 wpa_s->conf->wps_cred_processing == 2) && cred->cred_attr) { in wpa_supplicant_wps_cred()
388 size_t blen = cred->cred_attr_len * 2 + 1; in wpa_supplicant_wps_cred()
392 cred->cred_attr, cred->cred_attr_len); in wpa_supplicant_wps_cred()
398 wpas_notify_wps_credential(wpa_s, cred); in wpa_supplicant_wps_cred()
403 cred->cred_attr, cred->cred_attr_len); in wpa_supplicant_wps_cred()
408 wpa_hexdump_ascii(MSG_DEBUG, "WPS: SSID", cred->ssid, cred->ssid_len); in wpa_supplicant_wps_cred()
410 cred->auth_type); in wpa_supplicant_wps_cred()
[all …]
/external/wpa_supplicant_8/src/tls/
Dtlsv1_cred.c23 struct tlsv1_credentials *cred; in tlsv1_cred_alloc() local
24 cred = os_zalloc(sizeof(*cred)); in tlsv1_cred_alloc()
25 return cred; in tlsv1_cred_alloc()
29 void tlsv1_cred_free(struct tlsv1_credentials *cred) in tlsv1_cred_free() argument
31 if (cred == NULL) in tlsv1_cred_free()
34 x509_certificate_chain_free(cred->trusted_certs); in tlsv1_cred_free()
35 x509_certificate_chain_free(cred->cert); in tlsv1_cred_free()
36 crypto_private_key_free(cred->key); in tlsv1_cred_free()
37 os_free(cred->dh_p); in tlsv1_cred_free()
38 os_free(cred->dh_g); in tlsv1_cred_free()
[all …]
Dtlsv1_cred.h34 void tlsv1_cred_free(struct tlsv1_credentials *cred);
35 int tlsv1_set_ca_cert(struct tlsv1_credentials *cred, const char *cert,
38 int tlsv1_set_cert(struct tlsv1_credentials *cred, const char *cert,
40 int tlsv1_set_private_key(struct tlsv1_credentials *cred,
45 int tlsv1_set_dhparams(struct tlsv1_credentials *cred, const char *dh_file,
Dtlsv1_server_write.c29 cert = conn->cred ? conn->cred->cert : NULL; in tls_server_cert_chain_der_len()
34 cert = x509_certificate_get_subject(conn->cred->trusted_certs, in tls_server_cert_chain_der_len()
228 cert = conn->cred->cert; in tls_write_server_certificate()
246 cert = x509_certificate_get_subject(conn->cred->trusted_certs, in tls_write_server_certificate()
249 if (cert == conn->cred->cert || cert == NULL) { in tls_write_server_certificate()
397 if (conn->cred == NULL || conn->cred->dh_p == NULL || in tls_write_server_key_exchange()
398 conn->cred->dh_g == NULL) { in tls_write_server_key_exchange()
450 if (crypto_mod_exp(conn->cred->dh_g, conn->cred->dh_g_len, in tls_write_server_key_exchange()
514 if (2 + conn->cred->dh_g_len > (size_t) (end - pos)) { in tls_write_server_key_exchange()
522 WPA_PUT_BE16(pos, conn->cred->dh_g_len); in tls_write_server_key_exchange()
[all …]
/external/libjpeg-turbo/
Djdmrg565.c23 register int y, cred, cgreen, cblue; in LOCAL() local
48 cred = Crrtab[cr]; in LOCAL()
54 r = range_limit[y + cred]; in LOCAL()
60 r = range_limit[y + cred]; in LOCAL()
73 cred = Crrtab[cr]; in LOCAL()
77 r = range_limit[y + cred]; in LOCAL()
94 register int y, cred, cgreen, cblue; in LOCAL() local
120 cred = Crrtab[cr]; in LOCAL()
126 r = range_limit[DITHER_565_R(y + cred, d0)]; in LOCAL()
133 r = range_limit[DITHER_565_R(y + cred, d0)]; in LOCAL()
[all …]
Djdmrgext.c29 register int y, cred, cgreen, cblue; in LOCAL() local
51 cred = Crrtab[cr]; in LOCAL()
56 outptr[RGB_RED] = range_limit[y + cred]; in LOCAL()
64 outptr[RGB_RED] = range_limit[y + cred]; in LOCAL()
76 cred = Crrtab[cr]; in LOCAL()
80 outptr[RGB_RED] = range_limit[y + cred]; in LOCAL()
101 register int y, cred, cgreen, cblue; in LOCAL() local
125 cred = Crrtab[cr]; in LOCAL()
130 outptr0[RGB_RED] = range_limit[y + cred]; in LOCAL()
138 outptr0[RGB_RED] = range_limit[y + cred]; in LOCAL()
[all …]
/external/wpa_supplicant_8/src/ap/
Dwps_hostapd.c354 const struct wps_credential *cred) in hapd_wps_reconfig_in_memory() argument
361 if (cred->ssid_len <= SSID_MAX_LEN) { in hapd_wps_reconfig_in_memory()
362 os_memcpy(bss->ssid.ssid, cred->ssid, cred->ssid_len); in hapd_wps_reconfig_in_memory()
363 bss->ssid.ssid_len = cred->ssid_len; in hapd_wps_reconfig_in_memory()
368 if (cred->auth_type & (WPS_AUTH_WPA2 | WPS_AUTH_WPA2PSK | in hapd_wps_reconfig_in_memory()
374 if ((cred->auth_type & (WPS_AUTH_WPA2 | WPS_AUTH_WPA2PSK)) && in hapd_wps_reconfig_in_memory()
375 (cred->auth_type & (WPS_AUTH_WPA | WPS_AUTH_WPAPSK))) in hapd_wps_reconfig_in_memory()
377 else if (cred->auth_type & (WPS_AUTH_WPA2 | WPS_AUTH_WPA2PSK)) in hapd_wps_reconfig_in_memory()
379 else if (cred->auth_type & (WPS_AUTH_WPA | WPS_AUTH_WPAPSK)) in hapd_wps_reconfig_in_memory()
386 if (cred->auth_type & (WPS_AUTH_WPA2 | WPS_AUTH_WPA)) in hapd_wps_reconfig_in_memory()
[all …]
/external/wpa_supplicant_8/src/crypto/
Dtls_internal.c206 struct tlsv1_credentials *cred; in tls_connection_set_params() local
217 cred = tlsv1_cred_alloc(); in tls_connection_set_params()
218 if (cred == NULL) in tls_connection_set_params()
223 tlsv1_cred_free(cred); in tls_connection_set_params()
229 tlsv1_cred_free(cred); in tls_connection_set_params()
235 tlsv1_cred_free(cred); in tls_connection_set_params()
241 tlsv1_cred_free(cred); in tls_connection_set_params()
247 tlsv1_cred_free(cred); in tls_connection_set_params()
253 tlsv1_cred_free(cred); in tls_connection_set_params()
257 if (tlsv1_set_ca_cert(cred, params->ca_cert, in tls_connection_set_params()
[all …]
/external/python/google-auth-library-python/tests/compute_engine/
Dtest_credentials.py690 cred = credentials.IDTokenCredentials(
693 cred.refresh(request=mock.Mock())
695 assert cred.token == SAMPLE_ID_TOKEN
696 assert cred.expiry == datetime.datetime.fromtimestamp(SAMPLE_ID_TOKEN_EXP)
697 assert cred._use_metadata_identity_endpoint
698 assert cred._signer is None
699 assert cred._token_uri is None
700 assert cred._service_account_email == "foo@example.com"
701 assert cred._target_audience == "audience"
703 cred.sign_bytes(b"bytes")
[all …]
/external/rust/crates/grpcio-sys/grpc/test/core/security/
Dalts_credentials_fuzzer.cc82 grpc_channel_credentials* cred = grpc_alts_credentials_create_customized( in LLVMFuzzerTestOneInput() local
85 GPR_ASSERT(cred == nullptr); in LLVMFuzzerTestOneInput()
87 GPR_ASSERT(cred != nullptr); in LLVMFuzzerTestOneInput()
89 grpc_channel_credentials_release(cred); in LLVMFuzzerTestOneInput()
95 grpc_server_credentials* cred = in LLVMFuzzerTestOneInput() local
99 GPR_ASSERT(cred == nullptr); in LLVMFuzzerTestOneInput()
101 GPR_ASSERT(cred != nullptr); in LLVMFuzzerTestOneInput()
103 grpc_server_credentials_release(cred); in LLVMFuzzerTestOneInput()
/external/grpc-grpc/test/cpp/util/
Dgrpc_tool.cc74 bool Help(int argc, const char** argv, const CliCredentials& cred,
76 bool CallMethod(int argc, const char** argv, const CliCredentials& cred,
78 bool ListServices(int argc, const char** argv, const CliCredentials& cred,
80 bool PrintType(int argc, const char** argv, const CliCredentials& cred,
87 bool ParseMessage(int argc, const char** argv, const CliCredentials& cred,
89 bool ToText(int argc, const char** argv, const CliCredentials& cred,
91 bool ToBinary(int argc, const char** argv, const CliCredentials& cred,
210 const grpc::string& server_address, const CliCredentials& cred) { in CreateCliChannel() argument
212 if (!cred.GetSslTargetNameOverride().empty()) { in CreateCliChannel()
213 args.SetSslTargetNameOverride(cred.GetSslTargetNameOverride()); in CreateCliChannel()
[all …]
/external/grpc-grpc/test/core/security/
Dalts_credentials_fuzzer.cc87 grpc_channel_credentials* cred = grpc_alts_credentials_create_customized( in LLVMFuzzerTestOneInput() local
90 GPR_ASSERT(cred == nullptr); in LLVMFuzzerTestOneInput()
92 GPR_ASSERT(cred != nullptr); in LLVMFuzzerTestOneInput()
94 grpc_channel_credentials_release(cred); in LLVMFuzzerTestOneInput()
100 grpc_server_credentials* cred = in LLVMFuzzerTestOneInput() local
104 GPR_ASSERT(cred == nullptr); in LLVMFuzzerTestOneInput()
106 GPR_ASSERT(cred != nullptr); in LLVMFuzzerTestOneInput()
108 grpc_server_credentials_release(cred); in LLVMFuzzerTestOneInput()
/external/ltp/testcases/kernel/syscalls/getsockopt/
Dgetsockopt02.c44 struct ucred cred; in test_function() local
45 socklen_t cred_len = sizeof(cred); in test_function()
57 SO_PEERCRED, &cred, &cred_len) < 0) { in test_function()
62 if (fork_id != cred.pid) in test_function()
64 cred.pid, getpid()); in test_function()
/external/wpa_supplicant_8/src/eap_peer/
Deap_wsc.c58 static int eap_wsc_new_ap_settings(struct wps_credential *cred, in eap_wsc_new_ap_settings() argument
64 os_memset(cred, 0, sizeof(*cred)); in eap_wsc_new_ap_settings()
75 if ((len & 1) || len > 2 * sizeof(cred->ssid) || in eap_wsc_new_ap_settings()
76 hexstr2bin(pos, cred->ssid, len / 2)) { in eap_wsc_new_ap_settings()
80 cred->ssid_len = len / 2; in eap_wsc_new_ap_settings()
88 cred->auth_type = WPS_AUTH_OPEN; in eap_wsc_new_ap_settings()
90 cred->auth_type = WPS_AUTH_WPAPSK; in eap_wsc_new_ap_settings()
92 cred->auth_type = WPS_AUTH_WPA2PSK; in eap_wsc_new_ap_settings()
104 cred->encr_type = WPS_ENCR_NONE; in eap_wsc_new_ap_settings()
107 cred->encr_type = WPS_ENCR_WEP; in eap_wsc_new_ap_settings()
[all …]
/external/perfetto/ui/src/common/recordingV2/auth/
Dadb_key_manager.ts19 function isPasswordCredential(cred: Credential|
20 null): cred is PasswordCredential {
21 return cred !== null && cred.type === 'password';
/external/python/google-auth-library-python/tests_async/oauth2/
Dtest_credentials_async.py469 cred = _credentials_async.UserAccessTokenCredentials()
470 assert cred._account is None
472 cred = cred.with_account("account")
473 assert cred._account == "account"
478 cred = _credentials_async.UserAccessTokenCredentials()
479 cred.refresh(None)
480 assert cred.token == "access_token"
483 cred = _credentials_async.UserAccessTokenCredentials()
484 quota_project_cred = cred.with_quota_project("project-foo")
487 assert quota_project_cred._account == cred._account
[all …]
/external/curl/lib/vtls/
Dschannel.c773 backend->cred = (struct Curl_schannel_cred *) in schannel_acquire_credential_handle()
775 if(!backend->cred) { in schannel_acquire_credential_handle()
787 backend->cred->refcount = 1; in schannel_acquire_credential_handle()
793 backend->cred->client_cert_store = client_cert_store; in schannel_acquire_credential_handle()
1009 &backend->cred->cred_handle, in schannel_acquire_credential_handle()
1010 &backend->cred->time_stamp); in schannel_acquire_credential_handle()
1043 &backend->cred->cred_handle, in schannel_acquire_credential_handle()
1044 &backend->cred->time_stamp); in schannel_acquire_credential_handle()
1056 Curl_safefree(backend->cred); in schannel_acquire_credential_handle()
1153 backend->cred = NULL; in schannel_connect_step1()
[all …]
/external/compiler-rt/test/msan/Linux/
Dcmsghdr.cc75 struct ucred cred = {getpid(), getuid(), getgid()}; in main() local
77 __msan_poison(&cred.uid, sizeof(cred.uid)); in main()
82 memcpy(CMSG_DATA(cmsg), &cred, sizeof(struct ucred)); in main()
/external/wpa_supplicant_8/hs20/server/
Dspp_server.c649 static int add_username_password(struct hs20_svc *ctx, xml_node_t *cred, in add_username_password() argument
655 node = build_username_password(ctx, cred, user, pw); in add_username_password()
668 static void add_creation_date(struct hs20_svc *ctx, xml_node_t *cred) in add_creation_date() argument
679 xml_node_create_text(ctx->xml, cred, NULL, "CreationDate", str); in add_creation_date()
687 xml_node_t *cred; in build_credential_pw() local
689 cred = xml_node_create_root(ctx->xml, NULL, NULL, NULL, "Credential"); in build_credential_pw()
690 if (cred == NULL) { in build_credential_pw()
694 add_creation_date(ctx, cred); in build_credential_pw()
695 if (add_username_password(ctx, cred, user, pw, machine_managed) < 0) { in build_credential_pw()
696 xml_node_free(ctx->xml, cred); in build_credential_pw()
[all …]

123456