Lines Matching full:fallback
524 /* If fallback is needed, schedule and exit */ in qce_aead_crypt()
529 aead_request_set_tfm(&rctx->fallback_req, ctx->fallback); in qce_aead_crypt()
591 crypto_aead_setkey(ctx->fallback, key, keylen + QCE_CCM4309_SALT_SIZE) : in qce_aead_ccm_setkey()
592 crypto_aead_setkey(ctx->fallback, key, keylen); in qce_aead_ccm_setkey()
623 * below conditions. Schedule fallback in this case. in qce_aead_setkey()
648 return crypto_aead_setkey(ctx->fallback, key, keylen); in qce_aead_setkey()
664 return crypto_aead_setauthsize(ctx->fallback, authsize); in qce_aead_setauthsize()
672 ctx->fallback = crypto_alloc_aead(crypto_tfm_alg_name(&tfm->base), in qce_aead_init()
675 if (IS_ERR(ctx->fallback)) in qce_aead_init()
676 return PTR_ERR(ctx->fallback); in qce_aead_init()
679 crypto_aead_reqsize(ctx->fallback)); in qce_aead_init()
687 crypto_free_aead(ctx->fallback); in qce_aead_exit()