diff options
Diffstat (limited to 'crypto/shash.c')
-rw-r--r-- | crypto/shash.c | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/crypto/shash.c b/crypto/shash.c index 22fd9433141f..76f74b963151 100644 --- a/crypto/shash.c +++ b/crypto/shash.c | |||
@@ -310,7 +310,13 @@ static int shash_async_export(struct ahash_request *req, void *out) | |||
310 | 310 | ||
311 | static int shash_async_import(struct ahash_request *req, const void *in) | 311 | static int shash_async_import(struct ahash_request *req, const void *in) |
312 | { | 312 | { |
313 | return crypto_shash_import(ahash_request_ctx(req), in); | 313 | struct crypto_shash **ctx = crypto_ahash_ctx(crypto_ahash_reqtfm(req)); |
314 | struct shash_desc *desc = ahash_request_ctx(req); | ||
315 | |||
316 | desc->tfm = *ctx; | ||
317 | desc->flags = req->base.flags; | ||
318 | |||
319 | return crypto_shash_import(desc, in); | ||
314 | } | 320 | } |
315 | 321 | ||
316 | static void crypto_exit_shash_ops_async(struct crypto_tfm *tfm) | 322 | static void crypto_exit_shash_ops_async(struct crypto_tfm *tfm) |