Lines Matching refs:RevTab0
99 static const uint32_t RevTab0[] = { //other 3 tables are this same table, RORed 8, 16, and 24 bits … variable
195 ror(RevTab0[FwdSbox[(encrK[j] >> 24) & 0xff]], 0) ^ in aesInitForDecr()
196 ror(RevTab0[FwdSbox[(encrK[j] >> 16) & 0xff]], 8) ^ in aesInitForDecr()
197 ror(RevTab0[FwdSbox[(encrK[j] >> 8) & 0xff]], 16) ^ in aesInitForDecr()
198 ror(RevTab0[FwdSbox[(encrK[j] >> 0) & 0xff]], 24); in aesInitForDecr()
290 ror(RevTab0[(x0 >> 24) & 0xff], 0) ^ in aesDecr()
291 ror(RevTab0[(x3 >> 16) & 0xff], 8) ^ in aesDecr()
292 ror(RevTab0[(x2 >> 8) & 0xff], 16) ^ in aesDecr()
293 ror(RevTab0[(x1 >> 0) & 0xff], 24); in aesDecr()
296 ror(RevTab0[(x1 >> 24) & 0xff], 0) ^ in aesDecr()
297 ror(RevTab0[(x0 >> 16) & 0xff], 8) ^ in aesDecr()
298 ror(RevTab0[(x3 >> 8) & 0xff], 16) ^ in aesDecr()
299 ror(RevTab0[(x2 >> 0) & 0xff], 24); in aesDecr()
302 ror(RevTab0[(x2 >> 24) & 0xff], 0) ^ in aesDecr()
303 ror(RevTab0[(x1 >> 16) & 0xff], 8) ^ in aesDecr()
304 ror(RevTab0[(x0 >> 8) & 0xff], 16) ^ in aesDecr()
305 ror(RevTab0[(x3 >> 0) & 0xff], 24); in aesDecr()
308 ror(RevTab0[(x3 >> 24) & 0xff], 0) ^ in aesDecr()
309 ror(RevTab0[(x2 >> 16) & 0xff], 8) ^ in aesDecr()
310 ror(RevTab0[(x1 >> 8) & 0xff], 16) ^ in aesDecr()
311 ror(RevTab0[(x0 >> 0) & 0xff], 24); in aesDecr()