diff options
author | toni <matzeton@googlemail.com> | 2014-11-19 23:32:18 +0100 |
---|---|---|
committer | toni <matzeton@googlemail.com> | 2014-11-19 23:32:18 +0100 |
commit | 0ce0a24f199558dbe7afb4b045647e259608254c (patch) | |
tree | e8bdffbc49005ad287eb1d239dc5b9ecedd19732 /crypter/simple_decoder.asm | |
parent | 5c26ae8af99016bcbb6fae633367ab7100521c6d (diff) |
- added crypter stuff
Diffstat (limited to 'crypter/simple_decoder.asm')
-rw-r--r-- | crypter/simple_decoder.asm | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/crypter/simple_decoder.asm b/crypter/simple_decoder.asm new file mode 100644 index 0000000..7d2670c --- /dev/null +++ b/crypter/simple_decoder.asm @@ -0,0 +1,16 @@ +BITS 32 + + +jmp short go +next: +pop esi +xor ecx,ecx +mov cl,0 +change: +sub byte [esi + ecx - 1],0 +dec cl +jnz change +jmp short ok +go: +call next +ok: |