HomeSort by: relevance | last modified time | path
    Searched defs:ik (Results 1 - 12 of 12) sorted by relevancy

  /src/external/bsd/wpa/dist/src/crypto/
milenage.c 83 * @ik: Buffer for IK = 128-bit integrity key (f4), or %NULL
89 u8 *res, u8 *ck, u8 *ik, u8 *ak, u8 *akstar)
133 if (ik) {
138 if (aes_128_encrypt_block(k, tmp1, ik))
141 ik[i] ^= opc[i];
161 * milenage_generate - Generate AKA AUTN,IK,CK,RES
168 * @ik: Buffer for IK = 128-bit integrity key (f4), or %NULL
174 const u8 *sqn, const u8 *_rand, u8 *autn, u8 *ik,
237 u8 res[8], ck[16], ik[16]; local
    [all...]
  /src/lib/libtelnet/
sra.c 65 IdeaData ik; variable
190 common_key(ska, pkb, &ik, &ck);
278 common_key(ska, pkb, &ik, &ck);
  /src/sys/arch/sparc64/sparc64/
ipifuncs.c 245 int i, ik, shift = 0; local
277 for (ik = 0; ik < 1000000; ik++) {
285 if (ik == 1000000)
  /src/sys/net80211/
ieee80211_ioctl.c 877 struct ieee80211req_key ik; local
883 if (ireq->i_len != sizeof(ik))
885 error = copyin(ireq->i_data, &ik, sizeof(ik));
888 kid = ik.ik_keyix;
890 ni = ieee80211_find_node(&ic->ic_sta, ik.ik_macaddr);
898 IEEE80211_ADDR_COPY(&ik.ik_macaddr, ic->ic_bss->ni_macaddr);
902 ik.ik_type = cip->ic_cipher;
903 ik.ik_keylen = wk->wk_keylen;
904 ik.ik_flags = wk->wk_flags & (IEEE80211_KEY_XMIT | IEEE80211_KEY_RECV)
1621 struct ieee80211req_key ik; local
    [all...]
  /src/external/bsd/wpa/dist/hostapd/
hlr_auc_gw.c 27 * AKA-RESP-AUTH <IMSI> <RAND> <AUTN> <IK> <CK> <RES>
34 * Kc/SRES/RAND/AUTN/IK/CK/RES/AUTS as hex strings.
736 /* AKA-RESP-AUTH <IMSI> <RAND> <AUTN> <IK> <CK> <RES> */
740 u8 ik[EAP_AKA_IK_LEN]; local
764 autn, ik, ck, res, &res_len);
775 memset(ik, '3', EAP_AKA_IK_LEN);
801 pos += wpa_snprintf_hex(pos, end - pos, ik, EAP_AKA_IK_LEN);
  /src/external/bsd/wpa/dist/src/eap_server/
eap_server_aka.c 32 u8 ik[EAP_AKA_IK_LEN]; member in struct:eap_aka_data
915 data->rand, data->autn, data->ik,
931 * needed 6-octet SQN ^AK for CK',IK' derivation */
932 eap_aka_prime_derive_ck_ik_prime(data->ck, data->ik,
965 eap_aka_prime_derive_keys(sm->identity, identity_len, data->ik,
969 eap_aka_derive_mk(sm->identity, identity_len, data->ik,
eap_sim_db.c 52 u8 ik[EAP_AKA_IK_LEN]; member in struct:eap_sim_db_pending::__anon8439::__anon8441
542 * AKA-RESP-AUTH <IMSI> <RAND> <AUTN> <IK> <CK> <RES>
544 * (IMSI = ASCII string, RAND/AUTN/IK/CK/RES = hex string)
584 if (hexstr2bin(start, entry->u.aka.ik, EAP_AKA_IK_LEN))
1375 * @ik: Buffer for IK value
1394 u8 *_rand, u8 *autn, u8 *ik, u8 *ck,
1433 os_memcpy(ik, entry->u.aka.ik, EAP_AKA_IK_LEN);
  /src/external/bsd/ntp/dist/ntpdc/
ntpdc_ops.c 2938 struct info_kernel *ik; local
2947 &items, &itemsize, (void *)&ik, 0,
2962 status = ntohs(ik->status) & 0xffff;
2971 (int32)ntohl(ik->offset) * tscale_unano);
2973 fptoa((s_fp)ntohl(ik->freq), 3));
2975 (u_long)ntohl(ik->maxerror) * tscale_usec);
2977 (u_long)ntohl(ik->esterror) * tscale_usec);
3029 (u_long)ntohl(ik->constant));
3031 (u_long)ntohl(ik->precision) * tscale_usec);
3033 fptoa((s_fp)ntohl(ik->tolerance), 0))
    [all...]
  /src/external/bsd/wpa/dist/src/eap_peer/
eap_aka.c 24 u8 ik[EAP_AKA_IK_LEN], ck[EAP_AKA_CK_LEN], res[EAP_AKA_RES_MAX_LEN]; member in struct:eap_aka_data
247 if (hexstr2bin(pos, data->ik, EAP_AKA_IK_LEN) < 0)
249 wpa_hexdump_key(MSG_DEBUG, "EAP-AKA: IK", data->ik, EAP_AKA_IK_LEN);
302 data->ik, data->ck, data->auts);
335 data->ik, data->ck,
348 os_memset(data->ik, '3', EAP_AKA_IK_LEN);
1161 * needed 6-octet SQN ^ AK for CK',IK' derivation */
1168 eap_aka_prime_derive_ck_ik_prime(data->ck, data->ik,
1180 eap_aka_prime_derive_keys(identity, identity_len, data->ik,
    [all...]
  /src/external/bsd/ntp/dist/ntpd/
ntp_request.c 2518 register struct info_kernel *ik; local
2529 ik = (struct info_kernel *)prepare_pkt(srcadr, inter, inpkt,
2535 ik->offset = htonl((u_int32)ntx.offset);
2536 ik->freq = htonl((u_int32)ntx.freq);
2537 ik->maxerror = htonl((u_int32)ntx.maxerror);
2538 ik->esterror = htonl((u_int32)ntx.esterror);
2539 ik->status = htons(ntx.status);
2540 ik->constant = htonl((u_int32)ntx.constant);
2541 ik->precision = htonl((u_int32)ntx.precision);
2542 ik->tolerance = htonl((u_int32)ntx.tolerance)
    [all...]
  /src/external/gpl2/texinfo/dist/makeinfo/
lang.h 41 ia, id, ie, ik, is, it, iu, enumerator in enum:__anon9561
  /src/external/mit/lua/dist/src/
lcode.c 612 lua_Integer ik; local
614 if (!luaV_flttointeger(r, &ik, F2Ieq)) /* not an integral value? */
619 const lua_Number k = (ik == 0) ? q : r + r*q; /* new key */
623 lua_assert(!luaV_flttointeger(k, &ik, F2Ieq) ||

Completed in 50 milliseconds