Lines Matching defs:ictx
395 struct ccm_instance_ctx *ictx = aead_instance_ctx(inst);
402 mac = crypto_spawn_ahash(&ictx->mac);
406 ctr = crypto_spawn_skcipher(&ictx->ctr);
452 struct ccm_instance_ctx *ictx;
461 inst = kzalloc(sizeof(*inst) + sizeof(*ictx), GFP_KERNEL);
464 ictx = aead_instance_ctx(inst);
466 err = crypto_grab_ahash(&ictx->mac, aead_crypto_instance(inst),
470 mac = crypto_spawn_ahash_alg(&ictx->mac);
477 err = crypto_grab_skcipher(&ictx->ctr, aead_crypto_instance(inst),
481 ctr = crypto_spawn_skcipher_alg(&ictx->ctr);