Home
last modified time | relevance | path

Searched refs:ivs (Results 1 – 4 of 4) sorted by relevance

/arch/x86/crypto/
Dblowfish_glue.c192 u64 ivs[4 - 1]; in __cbc_decrypt() local
208 ivs[0] = src[0]; in __cbc_decrypt()
209 ivs[1] = src[1]; in __cbc_decrypt()
210 ivs[2] = src[2]; in __cbc_decrypt()
214 dst[1] ^= ivs[0]; in __cbc_decrypt()
215 dst[2] ^= ivs[1]; in __cbc_decrypt()
216 dst[3] ^= ivs[2]; in __cbc_decrypt()
Dtwofish_glue_3way.c53 u128 ivs[2]; in twofish_dec_blk_cbc_3way() local
55 ivs[0] = src[0]; in twofish_dec_blk_cbc_3way()
56 ivs[1] = src[1]; in twofish_dec_blk_cbc_3way()
60 u128_xor(&dst[1], &dst[1], &ivs[0]); in twofish_dec_blk_cbc_3way()
61 u128_xor(&dst[2], &dst[2], &ivs[1]); in twofish_dec_blk_cbc_3way()
Ddes3_ede_glue.c199 u64 ivs[3 - 1]; in __cbc_decrypt() local
215 ivs[0] = src[0]; in __cbc_decrypt()
216 ivs[1] = src[1]; in __cbc_decrypt()
220 dst[1] ^= ivs[0]; in __cbc_decrypt()
221 dst[2] ^= ivs[1]; in __cbc_decrypt()
Dserpent_sse2_glue.c50 u128 ivs[SERPENT_PARALLEL_BLOCKS - 1]; in serpent_decrypt_cbc_xway() local
54 ivs[j] = src[j]; in serpent_decrypt_cbc_xway()
59 u128_xor(dst + (j + 1), dst + (j + 1), ivs + j); in serpent_decrypt_cbc_xway()