Go to file
Strix 3af0f7dc72
fix: typo
2023-10-06 18:08:07 +02:00
.gitignore init: initial commit 2023-10-06 17:52:09 +02:00
README.md doc: typo 2023-10-06 18:07:22 +02:00
cipher.py fix: typo 2023-10-06 18:08:07 +02:00

README.md

Logical Alternating Shift Cipher

Made to talk with a friend without eavesdroppers.

How does it work?

The tool uses a numerical key to shift the message's characters.
Only alphabetical characters are shifted.

Say the key is '1234' and the message is "Hello world".
We start by shifting "H" to the right once: "I".
Then we shift "e" to the left twice: "c".
We keep doing this until we get: "Icohp urnmb".

The alphabet and key are wrapped around.
So the actual key is 123412341234123412...