The Atbash Cipher replaces each letter with its reverse
a -> z
b -> y
c -> x
etc.
Clone the repository:
bash git clone https://github.com/Zikithezikit/Atbash.git
cd Atbash
Compile the code:
g++ -o atbash Atbash.cpp
To encode or decode a message using the Atbash Cipher, run:
./atbash your Message here
Encoding "HELLO WORLD":
./atbash HELLO WORLD
Output:
SVOOL DLIOW
Decoding works the same way, since the Atbash Cipher is symmetrical.