Symbol: crypto_ahash_export
crypto/ahash.c
349
err = crypto_ahash_export(req, state);
crypto/ahash.c
360
crypto_ahash_export(req, state);
crypto/ahash.c
657
EXPORT_SYMBOL_GPL(crypto_ahash_export);
crypto/algif_hash.c
249
err = more ? crypto_ahash_export(req, state) : 0;
crypto/hmac.c
290
crypto_ahash_export(req, ipad);
crypto/hmac.c
296
crypto_ahash_export(req, opad);
crypto/hmac.c
305
return crypto_ahash_export(ahash_request_ctx(preq), out);
crypto/testmgr.c
1580
err = crypto_ahash_export(req, hashstate);
drivers/crypto/allwinner/sun8i-ce/sun8i-ce-hash.c
113
return crypto_ahash_export(&rctx->fallback_req, out);
drivers/crypto/allwinner/sun8i-ss/sun8i-ss-hash.c
171
return crypto_ahash_export(&rctx->fallback_req, out);
drivers/crypto/img-hash.c
624
return crypto_ahash_export(&rctx->fallback_req, out);
drivers/crypto/inside-secure/safexcel_hash.c
1111
return ret ?: crypto_ahash_export(areq, state);
drivers/crypto/inside-secure/safexcel_hash.c
2388
return safexcel_sha3_fbcheck(req) ?: crypto_ahash_export(subreq, out);
drivers/crypto/marvell/cesa/hash.c
1127
ret = crypto_ahash_export(req, state);
drivers/crypto/rockchip/rk3288_crypto_ahash.c
204
return crypto_ahash_export(&rctx->fallback_req, out);
drivers/crypto/sa2ul.c
1593
return crypto_ahash_export(subreq, out);
drivers/crypto/starfive/jh7110-hash.c
357
return crypto_ahash_export(&rctx->ahash_fbk_req, out);
drivers/crypto/tegra/tegra-se-hash.c
214
return crypto_ahash_export(&rctx->fallback_req, out);
include/crypto/hash.h
540
int crypto_ahash_export(struct ahash_request *req, void *out);