Home | History | Annotate | Download | only in wpa_supplicant

Lines Matching defs:Td2

65 Td2[x] = Si[x].[0d, 0b, 0e, 09];
536 static const u32 Td2[256] = {
802 #define TD2(i) Td2[((i) >> 8) & 0xff]
810 #define TD2_(i) Td2[(i) & 0xff]
838 #define TD2(i) rotr(Td0[((i) >> 8) & 0xff], 16)
1007 d##0 = TD0(s##0) ^ TD1(s##3) ^ TD2(s##2) ^ TD3(s##1) ^ rk[4 * i]; \
1008 d##1 = TD0(s##1) ^ TD1(s##0) ^ TD2(s##3) ^ TD3(s##2) ^ rk[4 * i + 1]; \
1009 d##2 = TD0(s##2) ^ TD1(s##1) ^ TD2(s##0) ^ TD3(s##3) ^ rk[4 * i + 2]; \
1010 d##3 = TD0(s##3) ^ TD1(s##2) ^ TD2(s##1) ^ TD3(s##0) ^ rk[4 * i + 3]