Home
last modified time | relevance | path

Searched refs:reauth (Results 1 – 19 of 19) sorted by relevance

/external/python/google-auth-library-python/tests/oauth2/
Dtest_reauth.py21 from google.oauth2 import reauth
56 assert reauth.is_interactive()
63 reauth._get_challenges(MOCK_REQUEST, ["SAML"], "token")
66 reauth._REAUTH_API + ":start",
77 reauth._get_challenges(
82 reauth._REAUTH_API + ":start",
96 reauth._send_challenge_result(
101 reauth._REAUTH_API + "/123:continue",
117 reauth._run_next_challenge(challenges_response, MOCK_REQUEST, "token") is None
125 reauth._run_next_challenge(challenges_response, MOCK_REQUEST, "token")
[all …]
/external/python/google-auth-library-python/google/oauth2/
D_reauth_async.py43 from google.oauth2 import reauth
68 reauth._REAUTH_API + ":start",
101 reauth._REAUTH_API + "/{}:continue".format(session_id),
179 if msg["status"] == reauth._AUTHENTICATED:
182 for _ in range(0, reauth.RUN_CHALLENGE_RETRY_LIMIT):
184 msg["status"] == reauth._CHALLENGE_REQUIRED
185 or msg["status"] == reauth._CHALLENGE_PENDING
193 if not reauth.is_interactive():
201 if msg["status"] == reauth._AUTHENTICATED:
236 scopes=[reauth._REAUTH_SCOPE],
[all …]
D_credentials_async.py37 from google.oauth2 import _reauth_async as reauth unknown
70 ) = await reauth.refresh_grant(
Dcredentials.py44 from google.oauth2 import reauth
302 ) = reauth.refresh_grant(
/external/wpa_supplicant_8/src/eap_server/
Deap_server_sim.c39 struct eap_sim_reauth *reauth; member
317 if (data->reauth) { in eap_sim_build_notification()
479 data->reauth = eap_sim_db_get_reauth_entry( in eap_sim_process_start()
482 if (data->reauth == NULL) { in eap_sim_process_start()
489 os_strlcpy(data->permanent, data->reauth->permanent, in eap_sim_process_start()
491 data->counter = data->reauth->counter; in eap_sim_process_start()
492 os_memcpy(data->mk, data->reauth->mk, EAP_SIM_MK_LEN); in eap_sim_process_start()
607 data->reauth = NULL; in eap_sim_process_start()
759 data->reauth); in eap_sim_process_reauth()
760 data->reauth = NULL; in eap_sim_process_reauth()
[all …]
Deap_sim_db.c311 struct eap_sim_reauth *reauth = &data->db_tmp_reauth; in get_reauth_cb() local
317 reauth->permanent = data->db_tmp_identity; in get_reauth_cb()
319 reauth->counter = atoi(argv[i]); in get_reauth_cb()
321 hexstr2bin(argv[i], reauth->mk, sizeof(reauth->mk)); in get_reauth_cb()
323 hexstr2bin(argv[i], reauth->k_encr, in get_reauth_cb()
324 sizeof(reauth->k_encr)); in get_reauth_cb()
326 hexstr2bin(argv[i], reauth->k_aut, in get_reauth_cb()
327 sizeof(reauth->k_aut)); in get_reauth_cb()
329 hexstr2bin(argv[i], reauth->k_re, in get_reauth_cb()
330 sizeof(reauth->k_re)); in get_reauth_cb()
[all …]
Deap_server_aka.c42 struct eap_sim_reauth *reauth; member
104 data->reauth = eap_sim_db_get_reauth_entry(sm->cfg->eap_sim_db_priv, in eap_aka_check_identity_reauth()
106 if (data->reauth == NULL) { in eap_aka_check_identity_reauth()
114 os_strlcpy(data->permanent, data->reauth->permanent, in eap_aka_check_identity_reauth()
116 data->counter = data->reauth->counter; in eap_aka_check_identity_reauth()
118 os_memcpy(data->k_encr, data->reauth->k_encr, in eap_aka_check_identity_reauth()
120 os_memcpy(data->k_aut, data->reauth->k_aut, in eap_aka_check_identity_reauth()
122 os_memcpy(data->k_re, data->reauth->k_re, in eap_aka_check_identity_reauth()
125 os_memcpy(data->mk, data->reauth->mk, EAP_SIM_MK_LEN); in eap_aka_check_identity_reauth()
619 if (data->reauth) { in eap_aka_build_notification()
[all …]
Deap_sim_db.h83 struct eap_sim_reauth *reauth);
/external/python/google-auth-library-python/tests_async/oauth2/
Dtest_reauth_async.py22 from google.oauth2 import reauth
63 reauth._REAUTH_API + ":start",
80 reauth._REAUTH_API + ":start",
100 reauth._REAUTH_API + "/123:continue",
270 scopes=[reauth._REAUTH_SCOPE],
/external/wpa_supplicant_8/src/eap_peer/
Deap_sim.c44 int reauth; member
167 static void eap_sim_clear_keys(struct eap_sim_data *data, int reauth) in eap_sim_clear_keys() argument
169 if (!reauth) { in eap_sim_clear_keys()
566 data->reauth = 0; in eap_sim_response_start()
570 data->reauth = 1; in eap_sim_response_start()
631 if (!data->reauth) { in eap_sim_response_start()
720 if (k_aut && data->reauth) { in eap_sim_response_notification()
838 data->reauth = 0; in eap_sim_process_challenge()
1018 if (data->reauth && in eap_sim_process_notification_auth()
1081 data->reauth = 1; in eap_sim_process_reauthentication()
[all …]
Deap_aka.c42 int reauth; member
159 static void eap_aka_clear_keys(struct eap_aka_data *data, int reauth) in eap_aka_clear_keys() argument
161 if (!reauth) { in eap_aka_clear_keys()
698 data->reauth = 0; in eap_aka_response_identity()
702 data->reauth = 1; in eap_aka_response_identity()
844 if (k_aut && data->reauth) { in eap_aka_response_notification()
1105 data->reauth = 0; in eap_aka_process_challenge()
1281 if (data->reauth && in eap_aka_process_notification_auth()
1358 data->reauth = 1; in eap_aka_process_reauthentication()
1645 if (!data->reauth) in eap_aka_get_session_id()
[all …]
Deap_peap.c56 int reauth; /* reauthentication */ member
285 data->reauth, resumed, data->phase2_eap_started, in eap_peap_derive_cmk()
287 if (data->reauth && !data->phase2_eap_started && resumed) { in eap_peap_derive_cmk()
1273 data->reauth = 1; in eap_peap_init_for_reauth()
Deap_ttls.c56 int reauth; /* reauthentication */ member
1431 if (data->reauth && in eap_ttls_phase2_start()
1772 data->reauth = 1; in eap_ttls_init_for_reauth()
/external/wpa_supplicant_8/hostapd/
Dhlr_auc_gw.txt67 pseudonyms and reauth information into a SQLite database. This is
DChangeLog523 * EAP-SIM/AKA: allow pseudonym to be used after unknown reauth id
534 and reauth data
1104 * driver_madwifi: fixed pairwise key removal to allow WPA reauth
/external/wpa_supplicant_8/src/common/
Dwpa_common.h463 int fils_pmkid_erp(int akmp, const u8 *reauth, size_t reauth_len,
Dwpa_common.c632 int fils_pmkid_erp(int akmp, const u8 *reauth, size_t reauth_len, in fils_pmkid_erp() argument
641 addr[0] = reauth; in fils_pmkid_erp()
/external/python/google-auth-library-python/
DCHANGELOG.md71 * add SAML challenge to reauth ([#819](https://www.github.com/googleapis/google-auth-library-python…
210 * add reauth support to async user credentials for gcloud ([#738](https://www.github.com/googleapis…
217 * add reauth feature to user credentials for gcloud ([#727](https://www.github.com/googleapis/googl…
/external/wpa_supplicant_8/wpa_supplicant/
DREADME-HS20527 <3>CTRL-EVENT-CONNECTED - Connection to 02:00:00:00:01:00 completed (reauth) [id=0 id_str=]