Skip to content

Latest commit

 

History

History
21 lines (14 loc) · 462 Bytes

README.md

File metadata and controls

21 lines (14 loc) · 462 Bytes

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.