Lines Matching refs:iv_gen_ops
144 struct crypt_iv_operations *iv_gen_ops; member
863 if (cc->iv_gen_ops) { in crypt_convert_block()
864 r = cc->iv_gen_ops->generator(cc, iv, dmreq); in crypt_convert_block()
877 if (!r && cc->iv_gen_ops && cc->iv_gen_ops->post) in crypt_convert_block()
878 r = cc->iv_gen_ops->post(cc, iv, dmreq); in crypt_convert_block()
1372 if (!error && cc->iv_gen_ops && cc->iv_gen_ops->post) in kcryptd_async_done()
1373 error = cc->iv_gen_ops->post(cc, iv_of_dmreq(cc, dmreq), dmreq); in kcryptd_async_done()
1554 if (cc->iv_gen_ops && cc->iv_gen_ops->dtr) in crypt_dtr()
1555 cc->iv_gen_ops->dtr(cc); in crypt_dtr()
1660 cc->iv_gen_ops = NULL; in crypt_ctr_cipher()
1662 cc->iv_gen_ops = &crypt_iv_plain_ops; in crypt_ctr_cipher()
1664 cc->iv_gen_ops = &crypt_iv_plain64_ops; in crypt_ctr_cipher()
1666 cc->iv_gen_ops = &crypt_iv_essiv_ops; in crypt_ctr_cipher()
1668 cc->iv_gen_ops = &crypt_iv_benbi_ops; in crypt_ctr_cipher()
1670 cc->iv_gen_ops = &crypt_iv_null_ops; in crypt_ctr_cipher()
1672 cc->iv_gen_ops = &crypt_iv_lmk_ops; in crypt_ctr_cipher()
1684 cc->iv_gen_ops = &crypt_iv_tcw_ops; in crypt_ctr_cipher()
1701 if (cc->iv_gen_ops && cc->iv_gen_ops->ctr) { in crypt_ctr_cipher()
1702 ret = cc->iv_gen_ops->ctr(cc, ti, ivopts); in crypt_ctr_cipher()
1710 if (cc->iv_gen_ops && cc->iv_gen_ops->init) { in crypt_ctr_cipher()
1711 ret = cc->iv_gen_ops->init(cc); in crypt_ctr_cipher()
2024 if (cc->iv_gen_ops && cc->iv_gen_ops->init) in crypt_message()
2025 ret = cc->iv_gen_ops->init(cc); in crypt_message()
2029 if (cc->iv_gen_ops && cc->iv_gen_ops->wipe) { in crypt_message()
2030 ret = cc->iv_gen_ops->wipe(cc); in crypt_message()