Home | History | Annotate | Download | only in crypto

Lines Matching refs:TD1

70 Td1[x] = Si[x].[0b, 0e, 09, 0d];
476 static const u32 Td1[256] = {
807 #define TD1(i) Td1[((i) >> 16) & 0xff]
815 #define TD1_(i) Td1[(i) & 0xff]
843 #define TD1(i) rotr(Td0[((i) >> 16) & 0xff], 8)
1017 d##0 = TD0(s##0) ^ TD1(s##3) ^ TD2(s##2) ^ TD3(s##1) ^ rk[4 * i]; \
1018 d##1 = TD0(s##1) ^ TD1(s##0) ^ TD2(s##3) ^ TD3(s##2) ^ rk[4 * i + 1]; \
1019 d##2 = TD0(s##2) ^ TD1(s##1) ^ TD2(s##0) ^ TD3(s##3) ^ rk[4 * i + 2]; \
1020 d##3 = TD0(s##3) ^ TD1(s##2) ^ TD2(s##1) ^ TD3(s##0) ^ rk[4 * i + 3]