• Home
  • Raw
  • Download

Lines Matching refs:iv_gen_ops

163 	const struct crypt_iv_operations *iv_gen_ops;  member
1334 if (cc->iv_gen_ops) { in crypt_convert_block_aead()
1339 r = cc->iv_gen_ops->generator(cc, org_iv, dmreq); in crypt_convert_block_aead()
1370 if (!r && cc->iv_gen_ops && cc->iv_gen_ops->post) in crypt_convert_block_aead()
1371 r = cc->iv_gen_ops->post(cc, org_iv, dmreq); in crypt_convert_block_aead()
1421 if (cc->iv_gen_ops) { in crypt_convert_block_skcipher()
1426 r = cc->iv_gen_ops->generator(cc, org_iv, dmreq); in crypt_convert_block_skcipher()
1447 if (!r && cc->iv_gen_ops && cc->iv_gen_ops->post) in crypt_convert_block_skcipher()
1448 r = cc->iv_gen_ops->post(cc, org_iv, dmreq); in crypt_convert_block_skcipher()
2179 if (!error && cc->iv_gen_ops && cc->iv_gen_ops->post) in kcryptd_async_done()
2180 error = cc->iv_gen_ops->post(cc, org_iv_of_dmreq(cc, dmreq), dmreq); in kcryptd_async_done()
2624 if (cc->iv_gen_ops && cc->iv_gen_ops->wipe) { in crypt_wipe_key()
2625 r = cc->iv_gen_ops->wipe(cc); in crypt_wipe_key()
2708 if (cc->iv_gen_ops && cc->iv_gen_ops->dtr) in crypt_dtr()
2709 cc->iv_gen_ops->dtr(cc); in crypt_dtr()
2751 cc->iv_gen_ops = NULL; in crypt_ctr_ivmode()
2753 cc->iv_gen_ops = &crypt_iv_plain_ops; in crypt_ctr_ivmode()
2755 cc->iv_gen_ops = &crypt_iv_plain64_ops; in crypt_ctr_ivmode()
2757 cc->iv_gen_ops = &crypt_iv_plain64be_ops; in crypt_ctr_ivmode()
2759 cc->iv_gen_ops = &crypt_iv_essiv_ops; in crypt_ctr_ivmode()
2761 cc->iv_gen_ops = &crypt_iv_benbi_ops; in crypt_ctr_ivmode()
2763 cc->iv_gen_ops = &crypt_iv_null_ops; in crypt_ctr_ivmode()
2765 cc->iv_gen_ops = &crypt_iv_eboiv_ops; in crypt_ctr_ivmode()
2767 cc->iv_gen_ops = &crypt_iv_elephant_ops; in crypt_ctr_ivmode()
2774 cc->iv_gen_ops = &crypt_iv_lmk_ops; in crypt_ctr_ivmode()
2786 cc->iv_gen_ops = &crypt_iv_tcw_ops; in crypt_ctr_ivmode()
2790 cc->iv_gen_ops = &crypt_iv_random_ops; in crypt_ctr_ivmode()
3030 if (cc->iv_gen_ops && cc->iv_gen_ops->ctr) { in crypt_ctr_cipher()
3031 ret = cc->iv_gen_ops->ctr(cc, ti, ivopts); in crypt_ctr_cipher()
3039 if (cc->iv_gen_ops && cc->iv_gen_ops->init) { in crypt_ctr_cipher()
3040 ret = cc->iv_gen_ops->init(cc); in crypt_ctr_cipher()
3540 if (cc->iv_gen_ops && cc->iv_gen_ops->init) in crypt_message()
3541 ret = cc->iv_gen_ops->init(cc); in crypt_message()