Searched refs:ivs (Results 1 – 7 of 7) sorted by relevance
/kernel/linux/linux-5.10/arch/x86/crypto/ |
D | twofish_glue_3way.c | 41 u128 ivs[2]; in twofish_dec_blk_cbc_3way() local 45 ivs[0] = src[0]; in twofish_dec_blk_cbc_3way() 46 ivs[1] = src[1]; in twofish_dec_blk_cbc_3way() 50 u128_xor(&dst[1], &dst[1], &ivs[0]); in twofish_dec_blk_cbc_3way() 51 u128_xor(&dst[2], &dst[2], &ivs[1]); in twofish_dec_blk_cbc_3way()
|
D | blowfish_glue.c | 176 u64 ivs[4 - 1]; in __cbc_decrypt() local 192 ivs[0] = src[0]; in __cbc_decrypt() 193 ivs[1] = src[1]; in __cbc_decrypt() 194 ivs[2] = src[2]; in __cbc_decrypt() 198 dst[1] ^= ivs[0]; in __cbc_decrypt() 199 dst[2] ^= ivs[1]; in __cbc_decrypt() 200 dst[3] ^= ivs[2]; in __cbc_decrypt()
|
D | serpent_sse2_glue.c | 36 u128 ivs[SERPENT_PARALLEL_BLOCKS - 1]; in serpent_decrypt_cbc_xway() local 42 ivs[j] = src[j]; in serpent_decrypt_cbc_xway() 47 u128_xor(dst + (j + 1), dst + (j + 1), ivs + j); in serpent_decrypt_cbc_xway()
|
D | des3_ede_glue.c | 184 u64 ivs[3 - 1]; in __cbc_decrypt() local 200 ivs[0] = src[0]; in __cbc_decrypt() 201 ivs[1] = src[1]; in __cbc_decrypt() 205 dst[1] ^= ivs[0]; in __cbc_decrypt() 206 dst[2] ^= ivs[1]; in __cbc_decrypt()
|
/kernel/linux/linux-5.10/drivers/net/ethernet/chelsio/inline_crypto/chtls/ |
D | chtls_io.c | 225 unsigned char *ivs; in tls_copy_ivs() local 240 ivs = kmalloc_array(CIPHER_BLOCK_SIZE, number_of_ivs, GFP_ATOMIC); in tls_copy_ivs() 241 if (!ivs) in tls_copy_ivs() 243 get_random_bytes(ivs, number_of_ivs * CIPHER_BLOCK_SIZE); in tls_copy_ivs() 250 memcpy(iv_loc, ivs, number_of_ivs * CIPHER_BLOCK_SIZE); in tls_copy_ivs() 264 memcpy(page_address(page), ivs, number_of_ivs * in tls_copy_ivs() 271 kfree(ivs); in tls_copy_ivs()
|
/kernel/linux/linux-5.10/drivers/gpu/drm/tidss/ |
D | tidss_dispc.c | 967 bool align, onoff, rf, ieo, ipc, ihs, ivs; in dispc_vp_enable() local 997 ivs = !!(mode->flags & DRM_MODE_FLAG_NVSYNC); in dispc_vp_enable() 1024 FLD_VAL(ivs, 12, 12)); in dispc_vp_enable()
|
/kernel/linux/linux-5.10/net/core/ |
D | rtnetlink.c | 2416 struct ifla_vf_spoofchk *ivs = nla_data(tb[IFLA_VF_SPOOFCHK]); in do_setvfinfo() local 2418 if (ivs->vf >= INT_MAX) in do_setvfinfo() 2422 err = ops->ndo_set_vf_spoofchk(dev, ivs->vf, in do_setvfinfo() 2423 ivs->setting); in do_setvfinfo()
|