Searched refs:RevTab0 (Results 1 – 1 of 1) sorted by relevance
/device/google/contexthub/lib/nanohub/ |
D | aes.c | 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() [all …]
|