Home | History | Annotate | Download | only in crypto

Lines Matching full:auts

206  * milenage_auts - Milenage AUTS validation
210 * @auts: AUTS = 112-bit authentication token from client
214 int milenage_auts(const u8 *opc, const u8 *k, const u8 *_rand, const u8 *auts,
224 sqn[i] = auts[i] ^ ak[i];
226 memcmp(mac_s, auts + 6, 8) != 0)
273 * @auts: 112-bit buffer for AUTS
278 u8 *auts)
307 auts[i] = sqn[i] ^ ak[i];
308 if (milenage_f1(opc, k, _rand, sqn, auts_amf, NULL, auts + 6))
310 wpa_hexdump(MSG_DEBUG, "Milenage: AUTS", auts, 14);