Skip to content

Files

Latest commit

4acd098 · Nov 1, 2024

History

History
43 lines (36 loc) · 730 Bytes

README.md

File metadata and controls

43 lines (36 loc) · 730 Bytes

Atbash Cipher

The Atbash Cipher replaces each letter with its reverse
a -> z
b -> y
c -> x
etc.

Wiki - For the interested

Table of Contents

Installation

Clone the repository:

bash git clone https://github.com/Zikithezikit/Atbash.git
cd Atbash

Compile the code:

g++ -o atbash Atbash.cpp

Usage

To encode or decode a message using the Atbash Cipher, run:

./atbash your Message here

Examples

Encoding "HELLO WORLD":

./atbash HELLO WORLD

Output:

SVOOL DLIOW

Decoding works the same way, since the Atbash Cipher is symmetrical.