Home
last modified time | relevance | path

Searched refs:t1 (Results 1 – 9 of 9) sorted by relevance

/hostap-latest/src/crypto/
Daes-internal-enc.c25 u32 s0, s1, s2, s3, t0, t1, t2, t3; in rijndaelEncrypt() local
87 s0 = TE41(t0) ^ TE42(t1) ^ TE43(t2) ^ TE44(t3) ^ rk[0]; in rijndaelEncrypt()
89 s1 = TE41(t1) ^ TE42(t2) ^ TE43(t3) ^ TE44(t0) ^ rk[1]; in rijndaelEncrypt()
91 s2 = TE41(t2) ^ TE42(t3) ^ TE43(t0) ^ TE44(t1) ^ rk[2]; in rijndaelEncrypt()
93 s3 = TE41(t3) ^ TE42(t0) ^ TE43(t1) ^ TE44(t2) ^ rk[3]; in rijndaelEncrypt()
Daes-internal-dec.c78 u32 s0, s1, s2, s3, t0, t1, t2, t3; in rijndaelDecrypt() local
140 s0 = TD41(t0) ^ TD42(t3) ^ TD43(t2) ^ TD44(t1) ^ rk[0]; in rijndaelDecrypt()
142 s1 = TD41(t1) ^ TD42(t0) ^ TD43(t3) ^ TD44(t2) ^ rk[1]; in rijndaelDecrypt()
144 s2 = TD41(t2) ^ TD42(t1) ^ TD43(t0) ^ TD44(t3) ^ rk[2]; in rijndaelDecrypt()
146 s3 = TD41(t3) ^ TD42(t2) ^ TD43(t1) ^ TD44(t0) ^ rk[3]; in rijndaelDecrypt()
Dsha256-internal.c83 u32 S[8], W[64], t0, t1; in sha256_compress() local
105 t1 = Sigma0(a) + Maj(a, b, c); \ in sha256_compress()
107 h = t0 + t1; in sha256_compress()
Dsha512-internal.c109 u64 S[8], t0, t1; in sha512_compress() local
135 t1 = Sigma0(S[0]) + Maj(S[0], S[1], S[2]); in sha512_compress()
143 S[0] = t0 + t1; in sha512_compress()
/hostap-latest/src/common/
Dsae.c638 struct crypto_bignum *u2, *t1, *t2, *z, *t, *zero, *one, *two, *three, in sswu() local
658 t1 = crypto_bignum_init(); in sswu()
671 if (!u2 || !t1 || !t2 || !z || !t || !zero || !one || !two || !three || in sswu()
686 crypto_bignum_mulmod(z, u2, prime, t1) < 0 || in sswu()
687 crypto_bignum_sqrmod(t1, prime, t2) < 0 || in sswu()
688 crypto_bignum_addmod(t1, t2, prime, t1) < 0) in sswu()
690 debug_print_bignum("SSWU: m", t1, prime_len); in sswu()
696 m_is_zero = const_time_eq(crypto_bignum_is_zero(t1), 1); in sswu()
699 crypto_bignum_exptmod(t1, t2, prime, t) < 0) in sswu()
704 if (crypto_bignum_mulmod(z, a, prime, t1) < 0 || in sswu()
[all …]
/hostap-latest/src/utils/
Dos_zephyr.c81 time_t t_local, t1, t2; in os_mktime() local
103 t1 = mktime(tm1); in os_mktime()
107 tz_offset = t2 - t1; in os_mktime()
Dos_win32.c66 time_t t_local, t1, t2; in os_mktime() local
87 t1 = mktime(tm1); in os_mktime()
91 tz_offset = t2 - t1; in os_mktime()
Dos_unix.c138 time_t t_local, t1, t2; in os_mktime() local
159 t1 = mktime(tm1); in os_mktime()
163 tz_offset = t2 - t1; in os_mktime()
/hostap-latest/src/tls/
Dlibtommath.c1685 mp_int q, x, y, t1, t2; in mp_div() local
1711 if ((res = mp_init (&t1)) != MP_OKAY) { in mp_div()
1794 mp_zero (&t1); in mp_div()
1795 t1.dp[0] = (t - 1 < 0) ? 0 : y.dp[t - 1]; in mp_div()
1796 t1.dp[1] = y.dp[t]; in mp_div()
1797 t1.used = 2; in mp_div()
1798 if ((res = mp_mul_d (&t1, q.dp[i - t - 1], &t1)) != MP_OKAY) { in mp_div()
1807 } while (mp_cmp_mag(&t1, &t2) == MP_GT); in mp_div()
1810 if ((res = mp_mul_d (&y, q.dp[i - t - 1], &t1)) != MP_OKAY) { in mp_div()
1814 if ((res = mp_lshd (&t1, i - t - 1)) != MP_OKAY) { in mp_div()
[all …]