Searched refs:auth_method (Results 1 – 10 of 10) sorted by relevance
/external/arm-trusted-firmware/lib/fconf/ |
D | fconf_cot_getter.c | 150 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/oss-fuzz/projects/openvpn/ |
D | fuzz_proxy.c | 85 pi.auth_method = HTTP_AUTH_NONE; in LLVMFuzzerTestOneInput() 88 pi.auth_method = HTTP_AUTH_BASIC; in LLVMFuzzerTestOneInput() 91 pi.auth_method = HTTP_AUTH_DIGEST; in LLVMFuzzerTestOneInput() 94 pi.auth_method = HTTP_AUTH_NTLM; in LLVMFuzzerTestOneInput() 97 pi.auth_method = HTTP_AUTH_NTLM2; in LLVMFuzzerTestOneInput()
|
/external/webrtc/rtc_base/ |
D | http_common.cc | 260 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 …]
|
D | http_common.h | 26 std::string auth_method; member 27 HttpAuthContext(const std::string& auth) : auth_method(auth) {} in HttpAuthContext() 46 std::string& auth_method);
|
D | socket_adapters.cc | 406 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/ |
D | auth_mod.c | 359 const auth_method_desc_t *auth_method = NULL; in auth_mod_verify_img() local 380 auth_method = &img_desc->img_auth_methods[i]; in auth_mod_verify_img() 381 switch (auth_method->type) { in auth_mod_verify_img() 386 rc = auth_hash(&auth_method->param.hash, in auth_mod_verify_img() 390 rc = auth_signature(&auth_method->param.sig, in auth_mod_verify_img() 395 nv_ctr_param = &auth_method->param.nv_ctr; in auth_mod_verify_img()
|
/external/wpa_supplicant_8/src/eap_server/ |
D | ikev2.c | 654 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()
|
D | eap_server_peap.c | 843 goto auth_method; in eap_peap_process_phase2_soh() 947 auth_method: in eap_peap_process_phase2_soh()
|
/external/wpa_supplicant_8/src/eap_peer/ |
D | ikev2.c | 590 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/tcpdump/ |
D | print-isakmp.c | 424 nd_uint8_t auth_method; /* Protocol-ID */ member 2322 STR_OR_ID(GET_U_1(p->auth_method), v2_auth)); in ikev2_auth_print()
|