Searched refs:sRc (Results 1 – 1 of 1) sorted by relevance
118 shift_word(uint8_t *sRc, uint8_t c, int count) in shift_word() argument122 uint8_t t = sRc[c]; in shift_word()124 sRc[c] = sRc[0x4 + c]; in shift_word()125 sRc[0x4 + c] = sRc[0x8 + c]; in shift_word()126 sRc[0x8 + c] = sRc[0xc + c]; in shift_word()127 sRc[0xc + c] = t; in shift_word()134 mix_columns(uint8_t *sRc) in mix_columns() argument140 new_st[i] = GF8mul(sRc[i], 0x2) ^ in mix_columns()141 GF8mul(sRc[(i + 1) & 0x3], 0x3) ^ in mix_columns()142 sRc[(i + 2) & 0x3] ^ sRc[(i + 3) & 0x3]; in mix_columns()[all …]