lasc/README.md

17 lines
512 B
Markdown
Raw Normal View History

2023-10-06 17:52:09 +02:00
# Logical Alternating Shift Cypher
Made to talk with a friend without eavedroppers.
2023-10-06 17:56:01 +02:00
## How does it work?
2023-10-06 17:52:09 +02:00
The tool uses a numerical key to shift the message's characters.
Only alphabetical characters are shifted.
2023-10-06 17:56:01 +02:00
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`...