Home | History | Annotate | Download | only in hostapd

Lines Matching refs:auts

30  * EAP-AKA / UMTS AUTS (re-synchronization):
31 * AKA-AUTS <IMSI> <AUTS> <RAND>
34 * Kc/SRES/RAND/AUTN/IK/CK/RES/AUTS as hex strings.
813 char *auts, *__rand;
819 /* AKA-AUTS <IMSI> <AUTS> <RAND> */
821 auts = strchr(imsi, ' ');
822 if (auts == NULL)
824 *auts++ = '\0';
826 __rand = strchr(auts, ' ');
832 printf("AKA-AUTS: IMSI=%s AUTS=%s RAND=%s\n",
833 imsi, auts, __rand);
835 if (hexstr2bin(auts, _auts, EAP_AKA_AUTS_LEN) ||
837 printf("Could not parse AUTS/RAND\n");
848 printf("AKA-AUTS: Incorrect MAC-S\n");
852 printf("AKA-AUTS: Re-synchronized: "
877 if (os_strncmp(cmd, "AKA-AUTS ", 9) == 0)