From 5f24adda77250830b1fe3746a99b0bf1409662ab Mon Sep 17 00:00:00 2001 From: Richard Levitte Date: Thu, 3 Jul 2003 20:50:46 +0000 Subject: [PATCH] Oops, I forgot to replace 'counter' with 'ivec' when used... --- crypto/aes/aes_ctr.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crypto/aes/aes_ctr.c b/crypto/aes/aes_ctr.c index 5a1ced67f8..79e1c18f19 100644 --- a/crypto/aes/aes_ctr.c +++ b/crypto/aes/aes_ctr.c @@ -153,8 +153,8 @@ void AES_ctr128_encrypt(const unsigned char *in, unsigned char *out, while (l--) { if (n == 0) { - AES_encrypt(counter, ecount_buf, key); - AES_ctr128_inc(counter); + AES_encrypt(ivec, ecount_buf, key); + AES_ctr128_inc(ivec); } *(out++) = *(in++) ^ ecount_buf[n]; n = (n+1) % AES_BLOCK_SIZE; -- 2.25.1