汇编 - LODS 指令

在密码学中,凯撒密码是已知的最简单的加密技术之一。 在此方法中,要加密的数据中的每个字母都被替换为字母表中固定数量位置的字母。

在此示例中,让我们通过简单地将数据中的每个字母替换为两个字母的移位来加密数据,因此 a 将被 c 替换,bd 等等。

我们使用 LODS 将原始字符串"password"加载到内存中。

section .text
   global _start         ;must be declared for using gcc
	
_start:                  ;tell linker entry point
   mov    ecx, len
   mov    esi, s1
   mov    edi, s2
	
loop_here:
   lodsb
   add al, 02
   stosb
   loop    loop_here          
   cld
   rep     movsb
	
   mov     edx,20        ;message length
   mov     ecx,s2        ;message to write
   mov     ebx,1         ;file descriptor (stdout)
   mov     eax,4         ;system call number (sys_write)
   int     0x80          ;call kernel
	
   mov     eax,1         ;system call number (sys_exit)
   int     0x80          ;call kernel
	
section .data
s1 db 'password', 0 ;source
len equ $-s1

section .bss
s2 resb 10               ;destination

当上面的代码被编译并执行时,会产生以下结果:

rcuuyqtf

❮ assembly_strings.htm