Lines Matching defs:fallback
169 /* fallback stuff */
170 struct crypto_shash *fallback;
1224 * software fallback algorithm.
1230 return crypto_shash_tfm_digest(tctx->fallback, ctx->buffer + offset,
1246 * If buffersize is less than fallback_sz, we use fallback
1292 err = crypto_shash_setkey(tctx->fallback, key, keylen);
1325 /* Allocate a fallback and abort if it failed. */
1326 tctx->fallback = crypto_alloc_shash(alg_name, 0,
1328 if (IS_ERR(tctx->fallback)) {
1329 pr_err("omap-sham: fallback driver '%s' "
1331 return PTR_ERR(tctx->fallback);
1345 crypto_free_shash(tctx->fallback);
1393 crypto_free_shash(tctx->fallback);
1394 tctx->fallback = NULL;
2004 dev_err(dev, "minimum fallback size 9\n");
2047 static DEVICE_ATTR_RW(fallback);