Searched refs:auts (Results 1 - 11 of 11) sorted by path

/freebsd-11-stable/contrib/wpa/src/crypto/
H A Dmilenage.c204 * @auts: AUTS = 112-bit authentication token from client
208 int milenage_auts(const u8 *opc, const u8 *k, const u8 *_rand, const u8 *auts, argument
218 sqn[i] = auts[i] ^ ak[i];
220 os_memcmp_const(mac_s, auts + 6, 8) != 0)
267 * @auts: 112-bit buffer for AUTS
272 u8 *auts)
301 auts[i] = sqn[i] ^ ak[i];
302 if (milenage_f1(opc, k, _rand, sqn, auts_amf, NULL, auts + 6))
304 wpa_hexdump(MSG_DEBUG, "Milenage: AUTS", auts, 14);
270 milenage_check(const u8 *opc, const u8 *k, const u8 *sqn, const u8 *_rand, const u8 *autn, u8 *ik, u8 *ck, u8 *res, size_t *res_len, u8 *auts) argument
H A Dmilenage.h15 int milenage_auts(const u8 *opc, const u8 *k, const u8 *_rand, const u8 *auts,
21 u8 *auts);
/freebsd-11-stable/contrib/wpa/src/eap_server/
H A Deap_sim_db.c1479 * @auts: AUTS value from the peer
1491 const u8 *auts, const u8 *_rand)
1525 auts, EAP_AKA_AUTS_LEN);
1489 eap_sim_db_resynchronize(struct eap_sim_db_data *data, const char *username, const u8 *auts, const u8 *_rand) argument
H A Deap_sim_db.h90 const char *username, const u8 *auts,
H A Deap_server_aka.c1042 if (attr->auts == NULL) {
1055 attr->auts, data->rand)) {
/freebsd-11-stable/contrib/wpa/src/utils/
H A Dpcsc_funcs.c1329 * @auts: 14-byte buffer for AUTS
1337 * synchronization failure, the received AUTS value will be written into auts
1343 unsigned char *ik, unsigned char *ck, unsigned char *auts)
1397 os_memcpy(auts, buf + 2, AKA_AUTS_LEN);
1398 wpa_hexdump(MSG_DEBUG, "SCARD: AUTS", auts, AKA_AUTS_LEN);
1340 scard_umts_auth(struct scard_data *scard, const unsigned char *_rand, const unsigned char *autn, unsigned char *res, size_t *res_len, unsigned char *ik, unsigned char *ck, unsigned char *auts) argument
H A Dpcsc_funcs.h24 unsigned char *ik, unsigned char *ck, unsigned char *auts);
/freebsd-11-stable/contrib/wpa/hostapd/
H A Dhlr_auc_gw.c813 char *auts, *__rand; local
821 auts = strchr(imsi, ' ');
822 if (auts == NULL)
824 *auts++ = '\0';
826 __rand = strchr(auts, ' ');
833 imsi, auts, __rand);
835 if (hexstr2bin(auts, _auts, EAP_AKA_AUTS_LEN) ||
/freebsd-11-stable/contrib/wpa/src/eap_common/
H A Deap_sim_common.c818 attr->auts = apos;
H A Deap_sim_common.h186 const u8 *nonce_mt, *identity, *res, *auts; member in struct:eap_sim_attrs
/freebsd-11-stable/contrib/wpa/src/eap_peer/
H A Deap_aka.c33 u8 auts[EAP_AKA_AUTS_LEN]; member in struct:eap_aka_data
149 os_memset(data->auts, 0, EAP_AKA_AUTS_LEN);
199 if (hexstr2bin(pos, data->auts, EAP_AKA_AUTS_LEN) < 0)
201 wpa_hexdump_key(MSG_DEBUG, "EAP-AKA: AUTS", data->auts,
271 data->ik, data->ck, data->auts);
305 data->res, &data->res_len, data->auts);
596 eap_sim_msg_add_full(msg, EAP_SIM_AT_AUTS, data->auts,

Completed in 158 milliseconds