Skip to content

vaylon-fernandes/Caesar-Cipher

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 

Repository files navigation

Caesar-Cipher

Python implementation of the caesar cipher

What is Caesar cipher?

A Caesar cipher is a type of substitution cipher in which all letter in the plain text are replaced by a letter at a predetermined shift further along the alphabet. For e.g. In the Image below we can observe a caesar cipher with a right shift of 3 i.e. a, the letter at postion 0, gets shifted to d, the letter at the 3rd position, b->e, c->f and so on.

Requirements:

Python 3

How to run?

Download the source code from here
Move to the folder containing the file and open command prompt/ terminal in that folder and run the command python main.py
OR
Run the code using the online repl.it IDE here