Searched defs:max_chal (Results 1 - 2 of 2) sorted by relevance

/external/wpa_supplicant_6/wpa_supplicant/src/hlr_auc_gw/
H A Dhlr_auc_gw.c24 * SIM-REQ-AUTH <IMSI> <max_chal>
36 * IMSI and max_chal are sent as an ASCII string,
393 int count, max_chal, ret; local
404 max_chal = atoi(pos);
405 if (max_chal < 1 || max_chal < EAP_SIM_MAX_CHAL)
406 max_chal = EAP_SIM_MAX_CHAL;
408 max_chal = EAP_SIM_MAX_CHAL;
420 for (count = 0; count < max_chal; count++) {
436 while (count < max_chal
[all...]
/external/wpa_supplicant_6/wpa_supplicant/src/eap_server/
H A Deap_sim_db.c525 * @max_chal: Maximum number of triplets
531 * max_chal), -1 (EAP_SIM_DB_FAILURE) on error (e.g., user not found), or
548 size_t identity_len, int max_chal,
599 if (num_chal > max_chal)
600 num_chal = max_chal;
619 ret = os_snprintf(msg + len, sizeof(msg) - len, " %d", max_chal);
547 eap_sim_db_get_gsm_triplets(void *priv, const u8 *identity, size_t identity_len, int max_chal, u8 *_rand, u8 *kc, u8 *sres, void *cb_session_ctx) argument

Completed in 59 milliseconds