jennylabs.tech logo

🕵️ Cipher Lab

Secure communication protocol for future engineers

tools/cipher-lab.md

$ What it does:

Encrypt secret messages with the Caesar method – one of the oldest algorithms in the world.

$ How it works:

Each letter is shifted by a key number. A with key 3 becomes D.

$ Built with: Python, FastAPI

Der Schlüssel bestimmt, um wie viele Stellen das Alphabet verschoben wird.
📡 Output:
docs/how-it-works.md

$ Das ist die Caesar-Verschlüsselung

Sie ist einer der ältesten Algorithmen der Welt.

$ Das Prinzip ist reine Mathematik:

Jeder Buchstabe hat eine Nummer (A=0, B=1, C=2...).

Wir addieren deinen Key dazu.

$ Beispiel: 'HALLO' + Key 1

H→I, A→B, L→M, L→M, O→P = IBMMP