Lines Matching refs:base
127 aead->base.exit = crypto_aead_exit_tfm; in crypto_aead_init_tfm()
139 struct aead_alg *aead = container_of(alg, struct aead_alg, base); in crypto_aead_report()
157 struct aead_alg *aead = container_of(alg, struct aead_alg, base); in crypto_aead_show()
188 .tfmsize = offsetof(struct crypto_aead, base),
189 .algsize = offsetof(struct aead_alg, base),
196 spawn->base.frontend = &crypto_aead_type; in crypto_grab_aead()
197 return crypto_grab_spawn(&spawn->base, inst, name, type, mask); in crypto_grab_aead()
215 struct crypto_alg *base = &alg->base; in aead_prepare_alg() local
222 alg->chunksize = base->cra_blocksize; in aead_prepare_alg()
224 base->cra_type = &crypto_aead_type; in aead_prepare_alg()
225 base->cra_flags &= ~CRYPTO_ALG_TYPE_MASK; in aead_prepare_alg()
226 base->cra_flags |= CRYPTO_ALG_TYPE_AEAD; in aead_prepare_alg()
233 struct crypto_alg *base = &alg->base; in crypto_register_aead() local
240 return crypto_register_alg(base); in crypto_register_aead()
246 crypto_unregister_alg(&alg->base); in crypto_unregister_aead()