Searched refs:siv (Results 1 – 3 of 3) sorted by relevance
/linux/crypto/ |
H A D | bpf_crypto_skcipher.c | 44 unsigned int len, u8 *siv) in bpf_crypto_lskcipher_encrypt() argument 46 return crypto_lskcipher_encrypt(tfm, src, dst, len, siv); in bpf_crypto_lskcipher_encrypt() 50 unsigned int len, u8 *siv) in bpf_crypto_lskcipher_decrypt() argument 52 return crypto_lskcipher_decrypt(tfm, src, dst, len, siv); in bpf_crypto_lskcipher_decrypt()
|
H A D | arc4.c | 28 u8 *dst, unsigned nbytes, u8 *siv, u32 flags) in crypto_arc4_crypt() argument 33 memcpy(siv, ctx, sizeof(*ctx)); in crypto_arc4_crypt() 35 ctx = (struct arc4_ctx *)siv; in crypto_arc4_crypt()
|
/linux/kernel/bpf/ |
H A D | crypto.c | 267 const struct bpf_dynptr_kern *siv, in bpf_crypto_crypt() argument 278 siv_len = siv ? __bpf_dynptr_size(siv) : 0; in bpf_crypto_crypt() 294 piv = siv_len ? __bpf_dynptr_data_rw(siv, siv_len) : NULL; in bpf_crypto_crypt()
|