Skip to content

The Atbash Cipher is a simple substitution cipher that replaces each letter of the alphabet with its reverse (e.g., A becomes Z, B becomes Y, etc.). This project implements the Atbash Cipher in C++.

Notifications You must be signed in to change notification settings

Zikithezikit/Atbash

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 

Repository files navigation

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.

About

The Atbash Cipher is a simple substitution cipher that replaces each letter of the alphabet with its reverse (e.g., A becomes Z, B becomes Y, etc.). This project implements the Atbash Cipher in C++.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages