From ac5fb0f57c3fcd7faf5c193b1b0f89e9d0376109 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niels=20M=C3=B6ller?= <nisse@lysator.liu.se> Date: Thu, 5 Feb 2004 17:24:39 +0100 Subject: [PATCH] * 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 --- x86/arcfour-crypt.asm | 3 +++ 1 file changed, 3 insertions(+) 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 -- GitLab