From: Niels Möller Date: Sun, 2 Sep 2001 22:10:09 +0000 (+0200) Subject: * twofish.c (twofish_decrypt): Fixed for();-bug in the block-loop. X-Git-Tag: nettle_1.0_release_20010925~60 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=346e45c5a71d3c79a0e754987930286d398340fc;p=thirdparty%2Fnettle.git * twofish.c (twofish_decrypt): Fixed for();-bug in the block-loop. Spotted by Jean-Pierre. (twofish_encrypt): Likewise. Rev: src/nettle/twofish.c:1.5 --- diff --git a/twofish.c b/twofish.c index 100a39c7..2a341e84 100644 --- a/twofish.c +++ b/twofish.c @@ -337,7 +337,7 @@ twofish_encrypt(struct twofish_ctx *context, uint32_t (*s_box)[256] = context->s_box; assert( !(length % TWOFISH_BLOCK_SIZE) ); - for ( ; length; length -= TWOFISH_BLOCK_SIZE); + for ( ; length; length -= TWOFISH_BLOCK_SIZE) { uint32_t words[4]; uint32_t r0, r1, r2, r3, t0, t1; @@ -408,7 +408,7 @@ twofish_decrypt(struct twofish_ctx *context, uint32_t (*s_box)[256] = context->s_box; assert( !(length % TWOFISH_BLOCK_SIZE) ); - for ( ; length; length -= TWOFISH_BLOCK_SIZE); + for ( ; length; length -= TWOFISH_BLOCK_SIZE) { uint32_t words[4]; uint32_t r0, r1, r2, r3, t0, t1;