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()
285 struct crypto_ahash *auth = ctx->auth; in crypto_authenc_decrypt() local
291 hash = (u8 *)ALIGN((unsigned long)hash + crypto_ahash_alignmask(auth), in crypto_authenc_decrypt()
292 crypto_ahash_alignmask(auth) + 1); in crypto_authenc_decrypt()
294 ahash_request_set_tfm(ahreq, auth); in crypto_authenc_decrypt()
312 struct crypto_ahash *auth; in crypto_authenc_init_tfm() local
317 auth = crypto_spawn_ahash(&ictx->auth); in crypto_authenc_init_tfm()
318 if (IS_ERR(auth)) in crypto_authenc_init_tfm()
319 return PTR_ERR(auth); in crypto_authenc_init_tfm()
331 ctx->auth = auth; in crypto_authenc_init_tfm()
340 crypto_ahash_reqsize(auth) + in crypto_authenc_init_tfm()
350 crypto_free_ahash(auth); in crypto_authenc_init_tfm()
358 crypto_free_ahash(ctx->auth); in crypto_authenc_exit_tfm()
368 crypto_drop_ahash(&ctx->auth); in crypto_authenc_free()
378 struct hash_alg_common *auth; in crypto_authenc_create() local
392 err = crypto_grab_ahash(&ctx->auth, aead_crypto_instance(inst), in crypto_authenc_create()
396 auth = crypto_spawn_ahash_alg(&ctx->auth); in crypto_authenc_create()
397 auth_base = &auth->base; in crypto_authenc_create()
405 ctx->reqoff = ALIGN(2 * auth->digestsize + auth_base->cra_alignmask, in crypto_authenc_create()
429 inst->alg.maxauthsize = auth->digestsize; in crypto_authenc_create()