mirror of
https://github.com/followmsi/android_kernel_google_msm.git
synced 2024-11-06 23:17:41 +00:00
crypto: s390/ghash: Fix incorrect backport of a1cae34e23b1
Signed-off-by: Zefan Li <lizefan@huawei.com>
This commit is contained in:
parent
12fb133f36
commit
700af4cf0a
1 changed files with 1 additions and 1 deletions
|
@ -115,7 +115,7 @@ static int ghash_final(struct shash_desc *desc, u8 *dst)
|
|||
struct ghash_desc_ctx *dctx = shash_desc_ctx(desc);
|
||||
|
||||
ghash_flush(dctx);
|
||||
memcpy(dst, dtx->icv, GHASH_BLOCK_SIZE);
|
||||
memcpy(dst, dctx->icv, GHASH_BLOCK_SIZE);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue