Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit abe5fa78 authored by Steffen Klassert's avatar Steffen Klassert Committed by Herbert Xu
Browse files

crypto: eseqiv - Fix IV generation for sync algorithms



If crypto_ablkcipher_encrypt() returns synchronous,
eseqiv_complete2() is called even if req->giv is already the
pointer to the generated IV. The generated IV is overwritten
with some random data in this case. This patch fixes this by
calling eseqiv_complete2() just if the generated IV has to be
copied to req->giv.

Signed-off-by: default avatarSteffen Klassert <steffen.klassert@secunet.com>
Signed-off-by: default avatarHerbert Xu <herbert@gondor.apana.org.au>
parent 295c01f9
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -153,6 +153,7 @@ static int eseqiv_givencrypt(struct skcipher_givcrypt_request *req)
	if (err)
		goto out;

	if (giv != req->giv)
		eseqiv_complete2(req);

out: