Home
last modified time | relevance | path

Searched refs:auth_method (Results 1 – 10 of 10) sorted by relevance

/external/arm-trusted-firmware/lib/fconf/
Dfconf_cot_getter.c150 auth_method_desc_t *auth_method) in set_auth_method() argument
155 assert(auth_method != NULL); in set_auth_method()
158 auth_method->type = auth_method_type; in set_auth_method()
162 auth_method->param.sig.sig = &sig; in set_auth_method()
163 auth_method->param.sig.alg = &sig_alg; in set_auth_method()
164 auth_method->param.sig.data = &raw_data; in set_auth_method()
165 auth_method->param.sig.pk = auth_param_type_desc; in set_auth_method()
168 auth_method->param.hash.data = &raw_data; in set_auth_method()
169 auth_method->param.hash.hash = auth_param_type_desc; in set_auth_method()
172 auth_method->param.nv_ctr.cert_nv_ctr = auth_param_type_desc; in set_auth_method()
[all …]
/external/webrtc/rtc_base/
Dhttp_common.cc260 std::string& auth_method) { in HttpAuthenticate() argument
263 HttpHasNthAttribute(args, 0, &auth_method, nullptr); in HttpAuthenticate()
265 if (context && (context->auth_method != auth_method)) in HttpAuthenticate()
269 if (absl::EqualsIgnoreCase(auth_method, "basic")) { in HttpAuthenticate()
275 context = new HttpAuthContext(auth_method); in HttpAuthenticate()
287 response = auth_method; in HttpAuthenticate()
297 if (absl::EqualsIgnoreCase(auth_method, "digest")) { in HttpAuthenticate()
303 context = new HttpAuthContext(auth_method); in HttpAuthenticate()
344 ss << auth_method; in HttpAuthenticate()
364 bool want_negotiate = absl::EqualsIgnoreCase(auth_method, "negotiate"); in HttpAuthenticate()
[all …]
Dhttp_common.h26 std::string auth_method; member
27 HttpAuthContext(const std::string& auth) : auth_method(auth) {} in HttpAuthContext()
46 std::string& auth_method);
Dsocket_adapters.cc406 std::string response, auth_method; in ProcessLine() local
408 pass_, context_, response, auth_method)) { in ProcessLine()
410 RTC_LOG(LS_VERBOSE) << "Ignoring Proxy-Authenticate: " << auth_method; in ProcessLine()
413 unknown_mechanisms_.append(auth_method); in ProcessLine()
/external/arm-trusted-firmware/drivers/auth/
Dauth_mod.c350 const auth_method_desc_t *auth_method = NULL; in auth_mod_verify_img() local
367 auth_method = &img_desc->img_auth_methods[i]; in auth_mod_verify_img()
368 switch (auth_method->type) { in auth_mod_verify_img()
373 rc = auth_hash(&auth_method->param.hash, in auth_mod_verify_img()
377 rc = auth_signature(&auth_method->param.sig, in auth_mod_verify_img()
381 rc = auth_nvctr(&auth_method->param.nv_ctr, in auth_mod_verify_img()
/external/openssh/
Dmonitor.c167 static char *auth_method = "unknown"; variable
300 auth_method = "unknown"; in monitor_child_preauth()
311 auth_method, auth_submethod)) { in monitor_child_preauth()
313 auth_method); in monitor_child_preauth()
324 !auth_root_allowed(ssh, auth_method)) in monitor_child_preauth()
344 auth_method, auth_submethod); in monitor_child_preauth()
349 auth_method, auth_submethod); in monitor_child_preauth()
356 if (strcmp(auth_method, "unknown") == 0) in monitor_child_preauth()
918 auth_method = "none"; in mm_answer_authpassword()
920 auth_method = "password"; in mm_answer_authpassword()
[all …]
/external/wpa_supplicant_8/src/eap_peer/
Dikev2.c590 u8 auth_method; in ikev2_process_auth() local
603 auth_method = auth[0]; in ikev2_process_auth()
607 wpa_printf(MSG_DEBUG, "IKEV2: Auth Method %d", auth_method); in ikev2_process_auth()
612 return ikev2_process_auth_cert(data, auth_method, auth, in ikev2_process_auth()
615 return ikev2_process_auth_secret(data, auth_method, auth, in ikev2_process_auth()
/external/wpa_supplicant_8/src/eap_server/
Dikev2.c654 u8 auth_method; in ikev2_process_auth() local
667 auth_method = auth[0]; in ikev2_process_auth()
671 wpa_printf(MSG_DEBUG, "IKEV2: Auth Method %d", auth_method); in ikev2_process_auth()
676 return ikev2_process_auth_cert(data, auth_method, auth, in ikev2_process_auth()
679 return ikev2_process_auth_secret(data, auth_method, auth, in ikev2_process_auth()
Deap_server_peap.c825 goto auth_method; in eap_peap_process_phase2_soh()
929 auth_method: in eap_peap_process_phase2_soh()
/external/tcpdump/
Dprint-isakmp.c434 uint8_t auth_method; /* Protocol-ID */ member
2323 STR_OR_ID(a.auth_method, v2_auth))); in ikev2_auth_print()