Home | History | Annotate | Download | only in hostapd

Lines Matching defs:auts

33  * EAP-AKA / UMTS AUTS (re-synchronization):
34 * AKA-AUTS <IMSI> <AUTS> <RAND>
37 * Kc/SRES/RAND/AUTN/IK/CK/RES/AUTS as hex strings.
536 char *auts, *__rand;
540 /* AKA-AUTS <IMSI> <AUTS> <RAND> */
542 auts = strchr(imsi, ' ');
543 if (auts == NULL)
545 *auts++ = '\0';
547 __rand = strchr(auts, ' ');
552 printf("AKA-AUTS: IMSI=%s AUTS=%s RAND=%s\n", imsi, auts, __rand);
553 if (hexstr2bin(auts, _auts, EAP_AKA_AUTS_LEN) ||
555 printf("Could not parse AUTS/RAND\n");
566 printf("AKA-AUTS: Incorrect MAC-S\n");
569 printf("AKA-AUTS: Re-synchronized: "
604 else if (strncmp(buf, "AKA-AUTS ", 9) == 0)