From: Niels Möller Date: Thu, 5 Feb 2004 16:24:39 +0000 (+0100) Subject: * x86/arcfour-crypt.asm (nettle_arcfour_crypt): Must store the new X-Git-Tag: nettle_1.9_release_20040207~39 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=ac5fb0f57c3fcd7faf5c193b1b0f89e9d0376109;p=thirdparty%2Fnettle.git * x86/arcfour-crypt.asm (nettle_arcfour_crypt): Must store the new i, j at the end of the loop. Rev: src/nettle/x86/arcfour-crypt.asm:1.4 --- diff --git a/x86/arcfour-crypt.asm b/x86/arcfour-crypt.asm index d35a1daa..007315ae 100644 --- a/x86/arcfour-crypt.asm +++ b/x86/arcfour-crypt.asm @@ -65,6 +65,9 @@ nettle_arcfour_crypt: incl %edi cmpl %esi, %edx jne .Lloop + + movb %al, 256(%ebp) C Store the new i and j. + movb %bl, 257(%ebp) .Lend: popl %edi popl %esi