Home | History | Annotate | Download | only in aes

Lines Matching defs:Td4

71  * Td4[x] = Si[x].[01]; */
505 static const uint8_t Td4[256] = {
1039 s0 = ((uint32_t)Td4[(t0 >> 24)] << 24) ^
1040 ((uint32_t)Td4[(t3 >> 16) & 0xff] << 16) ^
1041 ((uint32_t)Td4[(t2 >> 8) & 0xff] << 8) ^
1042 ((uint32_t)Td4[(t1) & 0xff]) ^ rk[0];
1044 s1 = ((uint32_t)Td4[(t1 >> 24)] << 24) ^
1045 ((uint32_t)Td4[(t0 >> 16) & 0xff] << 16) ^
1046 ((uint32_t)Td4[(t3 >> 8) & 0xff] << 8) ^
1047 ((uint32_t)Td4[(t2) & 0xff]) ^ rk[1];
1049 s2 = ((uint32_t)Td4[(t2 >> 24)] << 24) ^
1050 ((uint32_t)Td4[(t1 >> 16) & 0xff] << 16) ^
1051 ((uint32_t)Td4[(t0 >> 8) & 0xff] << 8) ^
1052 ((uint32_t)Td4[(t3) & 0xff]) ^ rk[2];
1054 s3 = ((uint32_t)Td4[(t3 >> 24)] << 24) ^
1055 ((uint32_t)Td4[(t2 >> 16) & 0xff] << 16) ^
1056 ((uint32_t)Td4[(t1 >> 8) & 0xff] << 8) ^
1057 ((uint32_t)Td4[(t0) & 0xff]) ^ rk[3];