Lines Matching refs:auth

23 	struct crypto_ahash_spawn auth;  member
29 struct crypto_ahash *auth; member
88 struct crypto_ahash *auth = ctx->auth; in crypto_authenc_setkey() local
96 crypto_ahash_clear_flags(auth, CRYPTO_TFM_REQ_MASK); in crypto_authenc_setkey()
97 crypto_ahash_set_flags(auth, crypto_aead_get_flags(authenc) & in crypto_authenc_setkey()
99 err = crypto_ahash_setkey(auth, keys.authkey, keys.authkeylen); in crypto_authenc_setkey()
138 struct crypto_ahash *auth = ctx->auth; in crypto_authenc_genicv() local
144 hash = (u8 *)ALIGN((unsigned long)hash + crypto_ahash_alignmask(auth), in crypto_authenc_genicv()
145 crypto_ahash_alignmask(auth) + 1); in crypto_authenc_genicv()
147 ahash_request_set_tfm(ahreq, auth); in crypto_authenc_genicv()
283 struct crypto_ahash *auth = ctx->auth; in crypto_authenc_decrypt() local
289 hash = (u8 *)ALIGN((unsigned long)hash + crypto_ahash_alignmask(auth), in crypto_authenc_decrypt()
290 crypto_ahash_alignmask(auth) + 1); in crypto_authenc_decrypt()
292 ahash_request_set_tfm(ahreq, auth); in crypto_authenc_decrypt()
310 struct crypto_ahash *auth; in crypto_authenc_init_tfm() local
315 auth = crypto_spawn_ahash(&ictx->auth); in crypto_authenc_init_tfm()
316 if (IS_ERR(auth)) in crypto_authenc_init_tfm()
317 return PTR_ERR(auth); in crypto_authenc_init_tfm()
329 ctx->auth = auth; in crypto_authenc_init_tfm()
338 crypto_ahash_reqsize(auth) + in crypto_authenc_init_tfm()
348 crypto_free_ahash(auth); in crypto_authenc_init_tfm()
356 crypto_free_ahash(ctx->auth); in crypto_authenc_exit_tfm()
366 crypto_drop_ahash(&ctx->auth); in crypto_authenc_free()
376 struct hash_alg_common *auth; in crypto_authenc_create() local
390 err = crypto_grab_ahash(&ctx->auth, aead_crypto_instance(inst), in crypto_authenc_create()
394 auth = crypto_spawn_ahash_alg(&ctx->auth); in crypto_authenc_create()
395 auth_base = &auth->base; in crypto_authenc_create()
403 ctx->reqoff = ALIGN(2 * auth->digestsize + auth_base->cra_alignmask, in crypto_authenc_create()
427 inst->alg.maxauthsize = auth->digestsize; in crypto_authenc_create()