Lines Matching defs:fallback
381 * @fallback: Software transformation for zero message or size < BUFLEN.
386 struct crypto_shash *fallback;
1530 * SW algorithm fallback.
1555 return crypto_shash_tfm_digest(tctx->fallback, ctx->buffer,
1654 /* Allocate a fallback and abort if it failed. */
1655 tctx->fallback = crypto_alloc_shash(alg_name, 0,
1657 if (IS_ERR(tctx->fallback)) {
1658 pr_err("fallback alloc fails for '%s'\n", alg_name);
1659 return PTR_ERR(tctx->fallback);
1681 * free allocated fallback
1687 crypto_free_shash(tctx->fallback);
1688 tctx->fallback = NULL;