From 6c98ed520dfbf3e20f2d5be9525da285b810881b Mon Sep 17 00:00:00 2001 From: Richard Levitte Date: Thu, 30 May 2002 14:06:17 +0000 Subject: [PATCH] Correct AES counter mode, which incorrectly incremented the counter before using it. PR: 56 --- crypto/aes/aes_ctr.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crypto/aes/aes_ctr.c b/crypto/aes/aes_ctr.c index 8e800481de..aea3db2092 100644 --- a/crypto/aes/aes_ctr.c +++ b/crypto/aes/aes_ctr.c @@ -106,8 +106,8 @@ void AES_ctr128_encrypt(const unsigned char *in, unsigned char *out, while (l--) { if (n == 0) { - AES_ctr128_inc(counter); AES_encrypt(counter, tmp, key); + AES_ctr128_inc(counter); } *(out++) = *(in++) ^ tmp[n]; n = (n+1) % AES_BLOCK_SIZE; -- 2.25.1