Home
last modified time | relevance | path

Searched refs:ta (Results 1 – 4 of 4) sorted by relevance

/hostap-3.7.0/src/crypto/
Dcrypto_wolfssl.c1541 ecc_point *ta = NULL, *tb = NULL; in crypto_ec_point_add() local
1560 ta = wc_ecc_new_point(); in crypto_ec_point_add()
1561 if (!ta) { in crypto_ec_point_add()
1567 wc_ecc_del_point(ta); in crypto_ec_point_add()
1572 if (mp_mulmod(pa->x, &mu, modulus, ta->x) != MP_OKAY || in crypto_ec_point_add()
1573 mp_mulmod(pa->y, &mu, modulus, ta->y) != MP_OKAY || in crypto_ec_point_add()
1574 mp_mulmod(pa->z, &mu, modulus, ta->z) != MP_OKAY || in crypto_ec_point_add()
1581 pa = ta; in crypto_ec_point_add()
1598 wc_ecc_del_point(ta); in crypto_ec_point_add()
/hostap-3.7.0/src/tls/
Dlibtommath.c1611 mp_int ta, tb, tq, q; in mp_div() local
1633 if ((res = mp_init_multi(&ta, &tb, &tq, &q, NULL)) != MP_OKAY) { in mp_div()
1640 if (((res = mp_abs(a, &ta)) != MP_OKAY) || in mp_div()
1648 if (mp_cmp(&tb, &ta) != MP_GT) { in mp_div()
1649 if (((res = mp_sub(&ta, &tb, &ta)) != MP_OKAY) || in mp_div()
1668 mp_exch(d, &ta); in mp_div()
1672 mp_clear_multi(&ta, &tb, &tq, &q, NULL); in mp_div()
/hostap-3.7.0/wlantest/
Dtkip.c358 os_memcpy(frag->ta, hdr->addr2, ETH_ALEN); in tkip_decrypt()
366 os_memcmp(frag->ta, hdr->addr2, ETH_ALEN) == 0) { in tkip_decrypt()
Dwlantest.h190 u8 ta[ETH_ALEN]; member