| /src/external/bsd/wpa/dist/src/crypto/ |
| milenage.h | 15 int milenage_auts(const u8 *opc, const u8 *k, const u8 *_rand, const u8 *auts, 21 u8 *auts);
|
| milenage.c | 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] [all...] |
| /src/external/bsd/wpa/dist/src/utils/ |
| pcsc_funcs.h | 24 unsigned char *ik, unsigned char *ck, unsigned char *auts);
|
| pcsc_funcs.c | 1329 * @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);
|
| /src/external/bsd/wpa/dist/src/eap_server/ |
| eap_sim_db.h | 90 const char *username, const u8 *auts,
|
| eap_server_aka.c | 43 int auts_reported; /* whether the current AUTS has been reported to the 1151 if (attr->auts == NULL) { 1159 /* Avoid re-reporting AUTS when processing pending EAP packet by 1160 * maintaining a local flag stating whether this AUTS has already been 1164 attr->auts, data->rand)) {
|
| eap_sim_db.c | 1479 * @auts: AUTS value from the peer 1484 * AUTN value by sending AUTS. The AUTS and RAND values should be sent to 1491 const u8 *auts, const u8 *_rand) 1513 len = os_snprintf(msg, sizeof(msg), "AKA-AUTS "); 1525 auts, EAP_AKA_AUTS_LEN); 1532 wpa_printf(MSG_DEBUG, "EAP-SIM DB: reporting AKA AUTS for "
|
| /src/external/bsd/wpa/dist/hostapd/ |
| hlr_auc_gw.c | 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; local 819 /* AKA-AUTS <IMSI> <AUTS> <RAND> */ 821 auts = strchr(imsi, ' '); 822 if (auts == NULL) 824 *auts++ = '\0' [all...] |
| /src/external/bsd/wpa/dist/src/eap_common/ |
| eap_sim_common.h | 186 const u8 *nonce_mt, *identity, *res, *auts; member in struct:eap_sim_attrs
|
| eap_sim_common.c | 818 attr->auts = apos;
|
| /src/external/bsd/wpa/dist/src/eap_peer/ |
| eap_aka.c | 34 u8 auts[EAP_AKA_AUTS_LEN]; member in struct:eap_aka_data 177 os_memset(data->auts, 0, EAP_AKA_AUTS_LEN); 228 if (os_strncmp(resp, "UMTS-AUTS:", 10) == 0) { 230 if (hexstr2bin(pos, data->auts, EAP_AKA_AUTS_LEN) < 0) 232 wpa_hexdump_key(MSG_DEBUG, "EAP-AKA: AUTS", data->auts, 302 data->ik, data->ck, data->auts); 336 data->res, &data->res_len, data->auts); 629 eap_sim_msg_add_full(msg, EAP_SIM_AT_AUTS, data->auts, 1148 "failed (AUTN seq# -> AUTS)"); [all...] |