diff options
author | Niels Möller <nisse@lysator.liu.se> | 2001-09-03 00:10:09 +0200 |
---|---|---|
committer | Niels Möller <nisse@lysator.liu.se> | 2001-09-03 00:10:09 +0200 |
commit | 346e45c5a71d3c79a0e754987930286d398340fc (patch) | |
tree | 793dcdbb52990afc4f93fb2870c2ed457ec961f3 /twofish.c | |
parent | f782075240dfd973b261bc9c6ece3a868eb35321 (diff) | |
download | nettle-346e45c5a71d3c79a0e754987930286d398340fc.tar.gz |
* 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
Diffstat (limited to 'twofish.c')
-rw-r--r-- | twofish.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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; |