https://github.com/rose-mtz/caesar-cipher-in-assembly
Caesar cipher program written in assembly.
https://github.com/rose-mtz/caesar-cipher-in-assembly
assembly makefile
Last synced: 8 months ago
JSON representation
Caesar cipher program written in assembly.
- Host: GitHub
- URL: https://github.com/rose-mtz/caesar-cipher-in-assembly
- Owner: rose-mtz
- Created: 2025-07-13T23:57:23.000Z (12 months ago)
- Default Branch: main
- Last Pushed: 2025-07-13T23:58:25.000Z (12 months ago)
- Last Synced: 2025-07-14T01:33:59.694Z (12 months ago)
- Topics: assembly, makefile
- Language: Assembly
- Homepage:
- Size: 3.91 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Caesar Cipher In Assembly
This program encrypts files using the simple caesar cipher encryption.
The program is written in **assembly**.
I wrote this program to practice assembly, as I'm currently reading "Programming from the Ground Up" by Jonathan Bartlett.
## Example Usage
To encrypt
```
./main 12 file.txt
```
To decrypt
```
./main -12 file.txt
```
Or you could do it in reverse to, negative number first then the positive number.
## To Build
```
make all
```