Skip to main content

Caesar Cipher in Python

Hello everyone, in this tutorial you’ll learn about Caesar cipher in Python. If you have learned about cryptography then you should have known this term Caesar cipher. Well if you don’t know what is this then let me explain it to you.

What is Caesar Cipher?

In cryptography, Caesar cipher is one of the simplest and most widely known encryption techniques. It is also known with other names like Caesar’s cipher, the shift cipher, Caesar’s code or Caesar shift. This encryption technique is used to encrypt plain text, so only the person you want can read it. The method is named after Julius Caesar, who used it in his private correspondence.

In this encryption technique, to encrypt our data,  we have to replace each letter in the text by a some other letter at a fixed difference. Let’s say, there is a letter ‘T’ then with a right shift of 1 it will be ‘U’ and with a left shift of 1 it will become ‘S’.  So here, the difference is 1 and the direction will also be same for a text. Either we can use left shift or right, not both in same text.

Let’s understand it with an easy example.

Example

Suppose we have text “the crazy programmer” to be encrypted. Then what we can do is replace each of letter present in the text by a another letter having fixed difference. Lets say we want right shift by 2 then each letter of the above text have to replaced by the letter, positioned second from the letter.

Plaintext: the crazy programmer

Ciphertext: vjg etcba rtqitcoogt

Now user can’t  read this text until he/she have the decrypt key.  Decrypt key is nothing just the knowledge about how we shifted those letters while encrypting it. To decrypt this we have to left shift all the letters by 2.

That was the basic concept of Caesar cipher.  If we see this encryption technique in mathematical way then the formula to get encrypted letter will be:

c = (x + n) mod 26

where, c is place value of encrypted letter,

x is place value of actual letter,

n is the number that shows us how many positions of letters we have to replace.

On other hand, to decrypt each letter we’ll use the formula given below:

c = (x – n) mod 26

Program for Caesar Cipher in Python

def encrypt(string, shift):

  cipher = ''
  for char in string: 
    if char == ' ':
      cipher = cipher + char
    elif  char.isupper():
      cipher = cipher + chr((ord(char) + shift - 65) % 26 + 65)
    else:
      cipher = cipher + chr((ord(char) + shift - 97) % 26 + 97)
  
  return cipher

text = input("enter string: ")
s = int(input("enter shift number: "))
print("original string: ", text)
print("after encryption: ", encrypt(text, s))

Output:

enter string: the crazy programmer
enter shift number: 2
original string: the crazy programmer
after encryption: vjg etcba rtqitcoogt

So in above program we have used the same formula (with some modification) we mentioned above. But in computer science ‘A’ is different from ‘a’ thats why we have to write that formula twice, (for uppercase and lowercase letters).

As you can see in the program we have added and subtracted 65 (for Uppercase) and 97 (for lowercase) in that mathematical formula because the ascii value of ‘A’ is 65 and of ‘a’ is 97. The ord() method is used to get the ascii value of the letters.

Note 1: if you want left shift instead of right then please enter a negative number in ‘enter shift number: ’.

Note 2: the above program will work only for Python 3.x because input() method works different in both Python 2 and 3. To use the above program in Python 2, use raw_input() in place of input() method.

To decrypt this message, we will use the same above program but with a small modification.

cipher = cipher + chr((ord(char) – shift – 65) % 26 + 65)

If you’ve any problem or suggestion related to caesar cipher in python then please let us know in comments.

The post Caesar Cipher in Python appeared first on The Crazy Programmer.



from The Crazy Programmer https://www.thecrazyprogrammer.com/2018/05/caesar-cipher-in-python.html

Comments

Popular posts from this blog

dotnet sdk list and dotnet sdk latest

Can someone make .NET Core better with a simple global command? Fanie Reynders did and he did it in a simple and elegant way. I'm envious, in fact, because I spec'ed this exact thing out in a meeting a few months ago but I could have just done it like he did and I would have used fewer keystrokes! Last year when .NET Core was just getting started, there was a "DNVM" helper command that you could use to simplify dealing with multiple versions of the .NET SDK on one machine. Later, rather than 'switching global SDK versions,' switching was simplified to be handled on a folder by folder basis. That meant that if you had a project in a folder with no global.json that pinned the SDK version, your project would use the latest installed version. If you liked, you could create a global.json file and pin your project's folder to a specific version. Great, but I would constantly have to google to remember the format for the global.json file, and I'd constan

R vs Python for Machine Learning

There are so many things to learn before to choose which language is good for Machine Learning. We will discuss each and everything about R as well as Python and the situation or problem in which situation we have to use which language. Let’s start Python and R are the two most Commonly used Programming Languages for Machine Learning and because of the popularity of both the languages Novice or you can say fresher are getting confused, whether they should choose R or Python language to commence their career in the Machine learning domain. Don’t worry guys through this article we will discuss R vs Python for Machine Learning. So, without exaggerating this article let’s get started. We will start it from the very Basics things or definitions. R vs Python for Machine Learning Introduction R is a programming language made by statisticians and data miners for statistical analysis and graphics supported by R foundation for statistical computing. R also provides high-quality graphics and

Top Tips For PCB Design Layout

Are you thinking about designing a printed circuit board? PCBs are quite complicated, and you need to make sure that the layout that you choose is going to operate as well as you want it to. For this reason, we have put together some top tips for PCB design layout. Keep reading if you would like to find out more about this. Leave Enough Space One of the most important design tips for PCB layout is that you need to make sure that you are leaving enough space between the components. While many people might think that packing components closely is the best route to take, this can cause problems further down the line. This is why we suggest leaving extra space for the wires that will spread. This way, you’ll have the perfect PCB design layout. Print Out Your Layout Struggling to find out if your components sizes match? Our next tip is to print out your layout and compare the printed version to your actual components. Datasheets can sometimes come with errors, so it doesn’t hurt to do