Lines Matching refs:iv_gen_ops

161 	const struct crypt_iv_operations *iv_gen_ops;  member
1332 if (cc->iv_gen_ops) { in crypt_convert_block_aead()
1337 r = cc->iv_gen_ops->generator(cc, org_iv, dmreq); in crypt_convert_block_aead()
1368 if (!r && cc->iv_gen_ops && cc->iv_gen_ops->post) in crypt_convert_block_aead()
1369 r = cc->iv_gen_ops->post(cc, org_iv, dmreq); in crypt_convert_block_aead()
1419 if (cc->iv_gen_ops) { in crypt_convert_block_skcipher()
1424 r = cc->iv_gen_ops->generator(cc, org_iv, dmreq); in crypt_convert_block_skcipher()
1445 if (!r && cc->iv_gen_ops && cc->iv_gen_ops->post) in crypt_convert_block_skcipher()
1446 r = cc->iv_gen_ops->post(cc, org_iv, dmreq); in crypt_convert_block_skcipher()
2170 if (!error && cc->iv_gen_ops && cc->iv_gen_ops->post) in kcryptd_async_done()
2171 error = cc->iv_gen_ops->post(cc, org_iv_of_dmreq(cc, dmreq), dmreq); in kcryptd_async_done()
2614 if (cc->iv_gen_ops && cc->iv_gen_ops->wipe) { in crypt_wipe_key()
2615 r = cc->iv_gen_ops->wipe(cc); in crypt_wipe_key()
2698 if (cc->iv_gen_ops && cc->iv_gen_ops->dtr) in crypt_dtr()
2699 cc->iv_gen_ops->dtr(cc); in crypt_dtr()
2741 cc->iv_gen_ops = NULL; in crypt_ctr_ivmode()
2743 cc->iv_gen_ops = &crypt_iv_plain_ops; in crypt_ctr_ivmode()
2745 cc->iv_gen_ops = &crypt_iv_plain64_ops; in crypt_ctr_ivmode()
2747 cc->iv_gen_ops = &crypt_iv_plain64be_ops; in crypt_ctr_ivmode()
2749 cc->iv_gen_ops = &crypt_iv_essiv_ops; in crypt_ctr_ivmode()
2751 cc->iv_gen_ops = &crypt_iv_benbi_ops; in crypt_ctr_ivmode()
2753 cc->iv_gen_ops = &crypt_iv_null_ops; in crypt_ctr_ivmode()
2755 cc->iv_gen_ops = &crypt_iv_eboiv_ops; in crypt_ctr_ivmode()
2757 cc->iv_gen_ops = &crypt_iv_elephant_ops; in crypt_ctr_ivmode()
2764 cc->iv_gen_ops = &crypt_iv_lmk_ops; in crypt_ctr_ivmode()
2776 cc->iv_gen_ops = &crypt_iv_tcw_ops; in crypt_ctr_ivmode()
2780 cc->iv_gen_ops = &crypt_iv_random_ops; in crypt_ctr_ivmode()
3020 if (cc->iv_gen_ops && cc->iv_gen_ops->ctr) { in crypt_ctr_cipher()
3021 ret = cc->iv_gen_ops->ctr(cc, ti, ivopts); in crypt_ctr_cipher()
3029 if (cc->iv_gen_ops && cc->iv_gen_ops->init) { in crypt_ctr_cipher()
3030 ret = cc->iv_gen_ops->init(cc); in crypt_ctr_cipher()
3530 if (cc->iv_gen_ops && cc->iv_gen_ops->init) in crypt_message()
3531 ret = cc->iv_gen_ops->init(cc); in crypt_message()