Skip to content

manuelinfosec/asm-ceaser-cipher

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ASM Caesar Cipher Cryptography

This program written in x86 Assembly, encrypts and decrypts a message using Caesar Cipher cryptography.

Compilation

Install NASM with:

sudo apt-get install -y nasm

With NASM and MINGW confirmed to be installed, proceed with compilation for your system architecture:

nasm -f win32 main.asm -o main
gcc main.obj

Acknowledgments

if this repository was useful to you, please leave it a star.