summaryrefslogtreecommitdiffstats
path: root/crypto/skcipher.c
diff options
context:
space:
mode:
authorEric Biggers <ebiggers@google.com>2018-07-23 12:57:50 -0400
committerHerbert Xu <herbert@gondor.apana.org.au>2018-08-03 06:06:03 -0400
commit0567fc9e90b9b1c8dbce8a5468758e6206744d4a (patch)
treec5ec7dd05c193c038adb2393a22cbc7bdbd1958d /crypto/skcipher.c
parente4a1f7858ab834b2cdddfc51be2f5debae782029 (diff)
crypto: skcipher - fix aligning block size in skcipher_copy_iv()
The ALIGN() macro needs to be passed the alignment, not the alignmask (which is the alignment minus 1). Fixes: b286d8b1a690 ("crypto: skcipher - Add skcipher walk interface") Cc: <stable@vger.kernel.org> # v4.10+ Signed-off-by: Eric Biggers <ebiggers@google.com> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'crypto/skcipher.c')
-rw-r--r--crypto/skcipher.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/skcipher.c b/crypto/skcipher.c
index 7d6a49fe3047..4f6b8dadaceb 100644
--- a/crypto/skcipher.c
+++ b/crypto/skcipher.c
@@ -398,7 +398,7 @@ static int skcipher_copy_iv(struct skcipher_walk *walk)
398 unsigned size; 398 unsigned size;
399 u8 *iv; 399 u8 *iv;
400 400
401 aligned_bs = ALIGN(bs, alignmask); 401 aligned_bs = ALIGN(bs, alignmask + 1);
402 402
403 /* Minimum size to align buffer by alignmask. */ 403 /* Minimum size to align buffer by alignmask. */
404 size = alignmask & ~a; 404 size = alignmask & ~a;