Lines Matching refs:iv_gen_ops

143 	struct crypt_iv_operations *iv_gen_ops;  member
862 if (cc->iv_gen_ops) { in crypt_convert_block()
863 r = cc->iv_gen_ops->generator(cc, iv, dmreq); in crypt_convert_block()
876 if (!r && cc->iv_gen_ops && cc->iv_gen_ops->post) in crypt_convert_block()
877 r = cc->iv_gen_ops->post(cc, iv, dmreq); in crypt_convert_block()
1355 if (!error && cc->iv_gen_ops && cc->iv_gen_ops->post) in kcryptd_async_done()
1356 error = cc->iv_gen_ops->post(cc, iv_of_dmreq(cc, dmreq), dmreq); in kcryptd_async_done()
1534 if (cc->iv_gen_ops && cc->iv_gen_ops->dtr) in crypt_dtr()
1535 cc->iv_gen_ops->dtr(cc); in crypt_dtr()
1640 cc->iv_gen_ops = NULL; in crypt_ctr_cipher()
1642 cc->iv_gen_ops = &crypt_iv_plain_ops; in crypt_ctr_cipher()
1644 cc->iv_gen_ops = &crypt_iv_plain64_ops; in crypt_ctr_cipher()
1646 cc->iv_gen_ops = &crypt_iv_essiv_ops; in crypt_ctr_cipher()
1648 cc->iv_gen_ops = &crypt_iv_benbi_ops; in crypt_ctr_cipher()
1650 cc->iv_gen_ops = &crypt_iv_null_ops; in crypt_ctr_cipher()
1652 cc->iv_gen_ops = &crypt_iv_lmk_ops; in crypt_ctr_cipher()
1664 cc->iv_gen_ops = &crypt_iv_tcw_ops; in crypt_ctr_cipher()
1681 if (cc->iv_gen_ops && cc->iv_gen_ops->ctr) { in crypt_ctr_cipher()
1682 ret = cc->iv_gen_ops->ctr(cc, ti, ivopts); in crypt_ctr_cipher()
1690 if (cc->iv_gen_ops && cc->iv_gen_ops->init) { in crypt_ctr_cipher()
1691 ret = cc->iv_gen_ops->init(cc); in crypt_ctr_cipher()
2002 if (cc->iv_gen_ops && cc->iv_gen_ops->init) in crypt_message()
2003 ret = cc->iv_gen_ops->init(cc); in crypt_message()
2007 if (cc->iv_gen_ops && cc->iv_gen_ops->wipe) { in crypt_message()
2008 ret = cc->iv_gen_ops->wipe(cc); in crypt_message()