From dbdc5d14d3301ed9dbab16db7e02f3c9518ac3f3 Mon Sep 17 00:00:00 2001 From: Richard Levitte Date: Thu, 30 May 2002 14:06:06 +0000 Subject: 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(-) (limited to 'crypto/aes/aes_ctr.c') 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; -- cgit v1.2.3