Home | History | Annotate | Download | only in crypto

Lines Matching refs:auts

200  * milenage_auts - Milenage AUTS validation
204 * @auts: AUTS = 112-bit authentication token from client
208 int milenage_auts(const u8 *opc, const u8 *k, const u8 *_rand, const u8 *auts,
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);