Lines Matching defs:fallback
174 /* fallback stuff */
175 struct crypto_shash *fallback;
1240 * software fallback algorithm.
1246 return crypto_shash_tfm_digest(tctx->fallback, ctx->buffer + offset,
1262 * If buffersize is less than fallback_sz, we use fallback
1308 err = crypto_shash_setkey(tctx->fallback, key, keylen);
1341 /* Allocate a fallback and abort if it failed. */
1342 tctx->fallback = crypto_alloc_shash(alg_name, 0,
1344 if (IS_ERR(tctx->fallback)) {
1345 pr_err("omap-sham: fallback driver '%s' "
1347 return PTR_ERR(tctx->fallback);
1361 crypto_free_shash(tctx->fallback);
1413 crypto_free_shash(tctx->fallback);
1414 tctx->fallback = NULL;
2012 dev_err(dev, "minimum fallback size 9\n");
2055 static DEVICE_ATTR_RW(fallback);