Skip to content

This code helps in encoding and decoding string using a Caesar Cipher

License

Notifications You must be signed in to change notification settings

SAKET03/Case-Study-Caesar-Cipher

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Case Study Caesar Cipher

In this Case Study I have implemented Caesar Cipher using Python.

A Caesar cipher shifts each letter of a message to another letter in the alphabet located a fixed distance from the original letter. If our encryption key were 1, we would shift h to the next letter i, i to the next letter j, and so on. If we reach the end of the alphabet, which for us is the space character, we simply loop back to a. To decode the message, we make a similar shift, except we move the same number of steps backwards in the alphabet.

This was a part of HarvardX PH526x Using Python for Research course provided by edx .

About

This code helps in encoding and decoding string using a Caesar Cipher

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published