Searched refs:mix_columns (Results 1 – 2 of 2) sorted by relevance
/Linux-v4.19/crypto/ |
D | aes_ti.c | 109 static u32 mix_columns(u32 x) in mix_columns() function 143 return mix_columns(x ^ y ^ ror32(y, 16)); in inv_mix_columns() 285 st1[0] = mix_columns(subshift(st0, 0)) ^ rkp[0]; in aesti_encrypt() 286 st1[1] = mix_columns(subshift(st0, 1)) ^ rkp[1]; in aesti_encrypt() 287 st1[2] = mix_columns(subshift(st0, 2)) ^ rkp[2]; in aesti_encrypt() 288 st1[3] = mix_columns(subshift(st0, 3)) ^ rkp[3]; in aesti_encrypt() 293 st0[0] = mix_columns(subshift(st1, 0)) ^ rkp[4]; in aesti_encrypt() 294 st0[1] = mix_columns(subshift(st1, 1)) ^ rkp[5]; in aesti_encrypt() 295 st0[2] = mix_columns(subshift(st1, 2)) ^ rkp[6]; in aesti_encrypt() 296 st0[3] = mix_columns(subshift(st1, 3)) ^ rkp[7]; in aesti_encrypt()
|
/Linux-v4.19/arch/arm64/crypto/ |
D | aes-neon.S | 71 .macro mix_columns, in, enc macro 99 mix_columns \in, \enc
|