mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-12-18 16:44:27 +08:00
crypto: authenc - Fix checkpatch errors
Signed-off-by: Richard Hartmann <richih.mailinglist@gmail.com> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
This commit is contained in:
parent
3d01a33b77
commit
f3542e6d7b
@ -194,7 +194,7 @@ static void authenc_verify_ahash_update_done(struct crypto_async_request *areq,
|
|||||||
scatterwalk_map_and_copy(ihash, areq_ctx->sg, areq_ctx->cryptlen,
|
scatterwalk_map_and_copy(ihash, areq_ctx->sg, areq_ctx->cryptlen,
|
||||||
authsize, 0);
|
authsize, 0);
|
||||||
|
|
||||||
err = memcmp(ihash, ahreq->result, authsize) ? -EBADMSG: 0;
|
err = memcmp(ihash, ahreq->result, authsize) ? -EBADMSG : 0;
|
||||||
if (err)
|
if (err)
|
||||||
goto out;
|
goto out;
|
||||||
|
|
||||||
@ -231,7 +231,7 @@ static void authenc_verify_ahash_done(struct crypto_async_request *areq,
|
|||||||
scatterwalk_map_and_copy(ihash, areq_ctx->sg, areq_ctx->cryptlen,
|
scatterwalk_map_and_copy(ihash, areq_ctx->sg, areq_ctx->cryptlen,
|
||||||
authsize, 0);
|
authsize, 0);
|
||||||
|
|
||||||
err = memcmp(ihash, ahreq->result, authsize) ? -EBADMSG: 0;
|
err = memcmp(ihash, ahreq->result, authsize) ? -EBADMSG : 0;
|
||||||
if (err)
|
if (err)
|
||||||
goto out;
|
goto out;
|
||||||
|
|
||||||
@ -464,7 +464,7 @@ static int crypto_authenc_verify(struct aead_request *req,
|
|||||||
ihash = ohash + authsize;
|
ihash = ohash + authsize;
|
||||||
scatterwalk_map_and_copy(ihash, areq_ctx->sg, areq_ctx->cryptlen,
|
scatterwalk_map_and_copy(ihash, areq_ctx->sg, areq_ctx->cryptlen,
|
||||||
authsize, 0);
|
authsize, 0);
|
||||||
return memcmp(ihash, ohash, authsize) ? -EBADMSG: 0;
|
return memcmp(ihash, ohash, authsize) ? -EBADMSG : 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int crypto_authenc_iverify(struct aead_request *req, u8 *iv,
|
static int crypto_authenc_iverify(struct aead_request *req, u8 *iv,
|
||||||
|
Loading…
Reference in New Issue
Block a user