Searched refs:crypto_blkcipher_crt (Results  1 – 1 of 1) sorted by relevance
| /Linux-v5.4/include/linux/ | 
| D | crypto.h | 1378 static inline struct blkcipher_tfm *crypto_blkcipher_crt(  in crypto_blkcipher_crt()  function1462 	return crypto_blkcipher_crt(tfm)->setkey(crypto_blkcipher_tfm(tfm),  in crypto_blkcipher_setkey()
 1489 	desc->info = crypto_blkcipher_crt(desc->tfm)->iv;  in crypto_blkcipher_encrypt()
 1490 	return crypto_blkcipher_crt(desc->tfm)->encrypt(desc, dst, src, nbytes);  in crypto_blkcipher_encrypt()
 1517 	return crypto_blkcipher_crt(desc->tfm)->encrypt(desc, dst, src, nbytes);  in crypto_blkcipher_encrypt_iv()
 1542 	desc->info = crypto_blkcipher_crt(desc->tfm)->iv;  in crypto_blkcipher_decrypt()
 1543 	return crypto_blkcipher_crt(desc->tfm)->decrypt(desc, dst, src, nbytes);  in crypto_blkcipher_decrypt()
 1567 	return crypto_blkcipher_crt(desc->tfm)->decrypt(desc, dst, src, nbytes);  in crypto_blkcipher_decrypt_iv()
 1582 	memcpy(crypto_blkcipher_crt(tfm)->iv, src, len);  in crypto_blkcipher_set_iv()
 1598 	memcpy(dst, crypto_blkcipher_crt(tfm)->iv, len);  in crypto_blkcipher_get_iv()
 
 |