crypto: arm64/aes-ce-ctr - fix skcipher conversion
Fix a missing statement that got lost in the skcipher conversion of the CTR transform. Signed-off-by: Ard Biesheuvel <ard.biesheuvel@linaro.org> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
This commit is contained in:
committed by
Herbert Xu
parent
3cbf61fb9f
commit
b3e1e0cbd9
@@ -206,6 +206,7 @@ static int ctr_encrypt(struct skcipher_request *req)
|
|||||||
(u8 *)ctx->key_enc, rounds, blocks, walk.iv,
|
(u8 *)ctx->key_enc, rounds, blocks, walk.iv,
|
||||||
first);
|
first);
|
||||||
err = skcipher_walk_done(&walk, walk.nbytes % AES_BLOCK_SIZE);
|
err = skcipher_walk_done(&walk, walk.nbytes % AES_BLOCK_SIZE);
|
||||||
|
first = 0;
|
||||||
}
|
}
|
||||||
if (walk.nbytes) {
|
if (walk.nbytes) {
|
||||||
u8 __aligned(8) tail[AES_BLOCK_SIZE];
|
u8 __aligned(8) tail[AES_BLOCK_SIZE];
|
||||||
|
|||||||
Reference in New Issue
Block a user