Lines Matching full:fallback
184 * Revisit to request a fallback cipher in this case. in qce_skcipher_setkey()
205 ret = crypto_skcipher_setkey(ctx->fallback, key, keylen); in qce_skcipher_setkey()
242 * are the same. Revisit to see if a fallback cipher in qce_des3_setkey()
283 * Conditions for requesting a fallback cipher in qce_skcipher_crypt()
295 skcipher_request_set_tfm(&rctx->fallback_req, ctx->fallback); in qce_skcipher_crypt()
322 /* take the size without the fallback skcipher_request at the end */ in qce_skcipher_init()
332 ctx->fallback = crypto_alloc_skcipher(crypto_tfm_alg_name(&tfm->base), in qce_skcipher_init_fallback()
334 if (IS_ERR(ctx->fallback)) in qce_skcipher_init_fallback()
335 return PTR_ERR(ctx->fallback); in qce_skcipher_init_fallback()
338 crypto_skcipher_reqsize(ctx->fallback)); in qce_skcipher_init_fallback()
346 crypto_free_skcipher(ctx->fallback); in qce_skcipher_exit()