About Vigenère Cipher
The Vigenère cipher is a classic encryption technique that dates back to the 16th century. It was invented by a French diplomat and cryptographer named Blaise de Vigenère, hence the name. It was known as “le chiffre indéchiffrable,” which means “the indecipherable cipher,” and remained unbroken until British polymath Charles Babbage broke it in the 19th century.
How it works
The Vigenère cipher is a polyalphabetic substitution cipher that uses a keyword to encrypt and decrypt messages. The key idea behind the Vigenère cipher is to use multiple Caesar ciphers based on the letters of the keyword.
Let's say we have a plaintext message consisting of letters: . We also have a keyword consisting of letters: , where .
To encrypt the message, we repeat the keyword until it matches the length of the plaintext. Let repeated until it matches the length of .
To encrypt each letter in the plaintext, we find the corresponding letter in the keyword where is the index of modulo . Then, we shift the letter by the index of in the alphabet. Let represent the encrypted message.
The mathematical representation of the encryption process is given by:
where is the -th letter of the encrypted message and .
To decrypt the message, we use a similar process. We repeat the keyword until it matches the length of the ciphertext. Let (repeated until it matches the length of ).
To decrypt each letter in the ciphertext, we find the corresponding letter in the keyword (where is the index of modulo ). Then, we shift the letter back by the index of in the alphabet. Let represent the decrypted message.
The mathematical representation of the decryption process is given by:
where is the -th letter of the decrypted message and .
Note that in these equations, we use modular arithmetic with since there are letters in the English alphabet. Additionally, we assume a simple mapping where is represented by , by , and so on.
Example
Let's use the word "KEY" as the keyword and encrypt the plaintext message "HELLO" using the Vigenère cipher.
First, we repeat the keyword "KEY" to match the length of the plaintext "HELLO". Thus, the repeated keyword becomes "KEYKE".
The corresponding numerical representation of the plaintext message "HELLO" is:
Using the mathematical encryption formula
, we can calculate the encrypted values as follows:
Thus, the encrypted message is "RIJVS".
To decrypt the ciphertext "RIJVS" back to the original plaintext, we repeat the keyword "KEY" to match the length of the ciphertext. Thus, the repeated keyword becomes "KEYKE".
Using the mathematical decryption formula
, we can calculate the decrypted values as follows:
Thus, the decrypted message is "HELLO".
Vigenère Table
Encryption/decryption in case of Vigenere Cipher is a tedious task. The Vigenère table, also known as the Vigenère square or the Tabula Recta, is used to simplify the process of encryption and decryption.
It consists of a grid or matrix that provides a systematic way of encrypting and decrypting messages using the Vigenère cipher. The table is formed by aligning multiple Caesar ciphers together, each with a different shift value determined by a keyword. The rows and columns of the table represent the letters of the alphabet, and each cell contains the letter resulting from combining the row and column letters using the Caesar cipher.
The Code
The encryption-decryption script can be downloaded from here:
About Vigenère Cipher
The Vigenère cipher is a classic encryption technique that dates back to the 16th century. It was invented by a French diplomat and cryptographer named Blaise de Vigenère, hence the name. It was known as “le chiffre indéchiffrable,” which means “the indecipherable cipher,” and remained unbroken until British polymath Charles Babbage broke it in the 19th century.
How it works
The Vigenère cipher is a polyalphabetic substitution cipher that uses a keyword to encrypt and decrypt messages. The key idea behind the Vigenère cipher is to use multiple Caesar ciphers based on the letters of the keyword.
Let's say we have a plaintext message
To encrypt the message, we repeat the keyword until…
Here is the source code of encryption_decryption.py:
def vigenere_cipher(text, keyword, mode):
result = ""
keyword_length = len(keyword)
keyword = keyword.upper()
key_index = 0
for i, char in enumerate(text):
if char.isalpha():
ascii_offset = ord('A') if char.isupper() else ord('a')
keyword_shift = ord(keyword[key_index % keyword_length]) - ord('A')
if mode == "decrypt":
keyword_shift = -keyword_shift # Reverse the shift for decryption
char = chr((ord(char) - ascii_offset + keyword_shift) % 26 + ascii_offset)
key_index+=1
result += char
return result
# Get mode
while True:
print('Do you want to (e)ncrypt or (d)ecrypt?')
response = input('> ').lower()
if response.startswith('e'):
action = 'encrypt'
break
elif response.startswith('d'):
action = 'decrypt'
break
print('Please enter the letter e or d.')
print("Enter the message.")
message = input('> ')
print("Enter the keyword.")
keyword = input('> ').upper()
# Perform encryption/decryption
result = vigenere_cipher(message, keyword, action)
# Display the result
print(f"Result: {result}")
The vigenere_cipher function performs the encryption or decryption operation based on the provided parameters. It initializes an empty string called result to store the final result. It calculates the length of the keyword and converts it to uppercase.
Next, it iterates through each character in the text input. If the character is a letter, it determines whether it is uppercase or lowercase and assigns an ASCII offset accordingly. It calculates the shift value for the current character based on the corresponding letter in the keyword. If the mode is set to "decrypt," it reverses the shift value.
Then, it applies the shift to the current character by subtracting the ASCII offset, adding the keyword shift, and taking the modulo 26 to wrap around the alphabet. Finally, it converts the shifted value back to a character using the ASCII offset and appends it to the result string. The key_index is incremented to ensure the keyword characters are used cyclically.
After processing all characters in the text, the result string contains the encrypted or decrypted message, depending on the mode.
The code prompts the user to enter the encryption or decryption mode (encrypt or decrypt) and stores the response in the action variable. It keeps asking for input until a valid mode is provided.
Then, it asks the user to enter the message and keyword, storing them in the message and keyword variables, respectively.
The vigenere_cipher function is called with the provided inputs (message, keyword, and action), and the result is stored in the result variable.
The Program in Action
Here is a sample output that we get upon executing the program:
Do you want to (e)ncrypt or (d)ecrypt?
> e
Enter the message.
> Enemy is approaching! Send troops immediately!
Enter the keyword.
> Moonlight
Result: Qbszj qy hibfcnnpouz! Esbq ezuvie wazplohmqzm!
Do you want to (e)ncrypt or (d)ecrypt?
> d
Enter the message.
> Qbszj qy hibfcnnpouz! Esbq ezuvie wazplohmqzm!
Enter the keyword.
> Moonlight
Result: Enemy is approaching! Send troops immediately!
Here the key used is Moonlight.
Conclusion
There are several ways to hack the Vigenère Cipher, such as Kasiski examination, Friedman test, frequency analysis, dictionary attack, etc. However, these are advanced methods and require complex application of combinatorics and statistics. Discussing even one of those would require a separate post. For now we will focus on encryption and decryption. I will surely post a Vigenère hack tutorial in future.
Note: Vigenère Cipher, although complex, is still too easy to break using modern methods and should not be used for serious encryption purposes.
Top comments (0)