From 49c5f38d3dceda33dcbdc940079f6f86ff3d0c03 Mon Sep 17 00:00:00 2001 From: Nils Larsch Date: Thu, 20 Apr 2006 13:54:34 +0000 Subject: [PATCH] undo accidental commit --- crypto/aes/aes_cfb.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crypto/aes/aes_cfb.c b/crypto/aes/aes_cfb.c index 294f746f66..49f0411010 100644 --- a/crypto/aes/aes_cfb.c +++ b/crypto/aes/aes_cfb.c @@ -202,7 +202,7 @@ void AES_cfb1_encrypt(const unsigned char *in, unsigned char *out, assert(*num == 0); memset(out,0,(length+7)/8); - for(n=0 ; n < length * 8; ++n) + for(n=0 ; n < length ; ++n) { c[0]=(in[n/8]&(1 << (7-n%8))) ? 0x80 : 0; AES_cfbr_encrypt_block(c,d,1,key,ivec,enc); -- 2.34.1