https://github.com/iinjyi/cipher-wheel
3rd year Assembly language project: enciphering and deciphering using ROT cipher algorithm with any key from 1 to 25. Ranked 3rd in "Best assembly project 2023" contest at Faculty of Computers and Information Science - Mansoura University.
https://github.com/iinjyi/cipher-wheel
assembly-language cipher decipher encipher rot rot13
Last synced: 8 months ago
JSON representation
3rd year Assembly language project: enciphering and deciphering using ROT cipher algorithm with any key from 1 to 25. Ranked 3rd in "Best assembly project 2023" contest at Faculty of Computers and Information Science - Mansoura University.
- Host: GitHub
- URL: https://github.com/iinjyi/cipher-wheel
- Owner: IinjyI
- License: apache-2.0
- Created: 2022-12-22T02:17:56.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2023-04-12T02:22:46.000Z (over 2 years ago)
- Last Synced: 2024-12-30T14:24:57.791Z (9 months ago)
- Topics: assembly-language, cipher, decipher, encipher, rot, rot13
- Language: Assembly
- Homepage:
- Size: 24.4 KB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Cipher-Wheel
### Enciphering / Deciphering ****`ROT cipher`**** in Assembly language using any specified key.
- ### Demo:
https://user-images.githubusercontent.com/90464702/209356845-058f39dd-39ed-4f06-9e0e-3851f327ce5f.mp4
#### [Demo on youtube (with Transcript in the description) ](https://www.youtube.com/watch?v=cUhjkleqBeM)
- ### Instruction manual:
- `Encipher`:
+ Press `E` then enter a key, press enter and start typing the text to encipher.
+ Text has to be ALL UPPERCASE.
- `Decipher`:
+ Press `D` then enter a key, press enter and start typing the text to decipher.
+ Text can be uppercase or lowercase.
- `Start processing`:
+ Embed `@` to the end of your text so that the program can start text processing.
- ***Notes***:
+ You will find the processed (i.e. enciphered / deciphered) text in `output.txt` file
+ In case of running from tasm, you will find it in "..\GUI Turbo Assembler\BIN" folder.
+ In case of running the executable with DOSBox, you will find it in the same directory as the executable.
+ You can enter numbers, new lines, or even special characters (except for `@` as I am using it as a start sign). this will not break my code. :D#### [More about cipher wheel](https://en.wikipedia.org/wiki/Cipher_disk)