Skip to content
Snippets Groups Projects
Commit ac5fb0f5 authored by Niels Möller's avatar Niels Möller
Browse files

* 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
parent de09ed39
No related branches found
No related tags found
No related merge requests found
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment