Searched refs:b0 (Results 1 – 1 of 1) sorted by relevance
/crypto/ |
D | aes_generic.c | 1334 u32 b0[4], b1[4]; in aes_encrypt() local 1338 b0[0] = le32_to_cpu(src[0]) ^ ctx->key_enc[0]; in aes_encrypt() 1339 b0[1] = le32_to_cpu(src[1]) ^ ctx->key_enc[1]; in aes_encrypt() 1340 b0[2] = le32_to_cpu(src[2]) ^ ctx->key_enc[2]; in aes_encrypt() 1341 b0[3] = le32_to_cpu(src[3]) ^ ctx->key_enc[3]; in aes_encrypt() 1344 f_nround(b1, b0, kp); in aes_encrypt() 1345 f_nround(b0, b1, kp); in aes_encrypt() 1349 f_nround(b1, b0, kp); in aes_encrypt() 1350 f_nround(b0, b1, kp); in aes_encrypt() 1353 f_nround(b1, b0, kp); in aes_encrypt() [all …]
|