Lines Matching defs:fallback
380 * @fallback: Software transformation for zero message or size < BUFLEN.
385 struct crypto_shash *fallback;
1533 * SW algorithm fallback.
1558 return crypto_shash_tfm_digest(tctx->fallback, ctx->buffer,
1657 /* Allocate a fallback and abort if it failed. */
1658 tctx->fallback = crypto_alloc_shash(alg_name, 0,
1660 if (IS_ERR(tctx->fallback)) {
1661 pr_err("fallback alloc fails for '%s'\n", alg_name);
1662 return PTR_ERR(tctx->fallback);
1684 * free allocated fallback
1690 crypto_free_shash(tctx->fallback);
1691 tctx->fallback = NULL;