Home
last modified time | relevance | path

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

/linux-6.12.1/crypto/
Dlskcipher.c79 u8 *tiv; in crypto_lskcipher_crypt_unaligned() local
85 tiv = kmalloc(PAGE_SIZE, GFP_ATOMIC); in crypto_lskcipher_crypt_unaligned()
86 if (!tiv) in crypto_lskcipher_crypt_unaligned()
89 memcpy(tiv, iv, ivsize + statesize); in crypto_lskcipher_crypt_unaligned()
104 err = crypt(tfm, p, p, chunk, tiv, CRYPTO_LSKCIPHER_FLAG_FINAL); in crypto_lskcipher_crypt_unaligned()
117 memcpy(iv, tiv, ivsize + statesize); in crypto_lskcipher_crypt_unaligned()
119 kfree_sensitive(tiv); in crypto_lskcipher_crypt_unaligned()