Home
last modified time | relevance | path

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

/linux-4.1.27/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()
/linux-4.1.27/drivers/crypto/
Dmv_cesa.c130 u32 ivs[2 * SHA1_DIGEST_SIZE / 4]; member
339 tfm_ctx->ivs, sizeof(tfm_ctx->ivs)); in mv_process_hash_current()
768 ctx->ivs[i] = cpu_to_be32(isha1_state->state[i]); in mv_hash_init_ivs()
769 ctx->ivs[i + 5] = cpu_to_be32(osha1_state->state[i]); in mv_hash_init_ivs()
/linux-4.1.27/net/core/
Drtnetlink.c1495 struct ifla_vf_spoofchk *ivs = nla_data(tb[IFLA_VF_SPOOFCHK]); in do_setvfinfo() local
1499 err = ops->ndo_set_vf_spoofchk(dev, ivs->vf, in do_setvfinfo()
1500 ivs->setting); in do_setvfinfo()