×

Cryptography Tutorial

Cryptography MCQs

One-Time Pad Cipher in Cryptography

Cryptography | One-Time Pad Cipher: In this tutorial, we will learn about the one-time pad cipher, we will first have a brief introduction regarding this technique and then will look into how the encryption and decryption are performed in it. By Monika Sharma Last updated : May 25, 2023

What is One-Time Pad Cipher in Cryptography?

The One-time Pad cipher is almost similar to the Vernam cipher, this cipher technique also encrypts the plain text by working on the binary level of the text. The only difference between the two is that the length of the key in the Vernam Cipher must be less than or equal to the length of the plain text, whereas, in One-time pad Cipher, the length of the key must be equal to that of the Plain text. It cannot be less than that.

Now, talking about its characteristics and details, One-time pad cipher is a cipher in which we consider both the plain text and the key string in its binary form.

The following key points can be drawn for the One Time Pad cipher,

  • The key chosen here is a string whose length must be equal to the length of the plain text.
  • The key can be either in string form or directly in binary form also.
  • It is a type of symmetric-key cryptography.
  • It is a type of poly-alphabetic cipher, being a part of the substitution cipher.

One-Time Pad Cipher Encryption Process

  • Here, firstly, we convert both our plain text and the key string into its binary form.
  • Perform XOR operation between the elements of the plain text with the respective elements of the ley string which hold the same positions.
  • Therefore, the encryption on the plain text to convert it into ciphertext is performed as follows,
    E (Pi , Ki) =  Pi  (XOR)  Ki
    

One-Time Pad Cipher Decryption Process

The process of decrypting the ciphertext to convert it back into plain text is performed in the same way as the encryption process. Therefore, the formula for decryption of the text under Vernam cipher is as follows,

D (Ci , Ki) =  Ci (XOR) Ki

One-Time Pad Cipher Example

Given Plain text: IF 
Key: 1101011 0101111

Convert the given plain text into cipher text...

Solution

  • Convert the given plain text into its binary form,
    1001001 1000110
    
  • Check whether the length of the key if equal to that of the plain text,
    1 0 0 1 0 0 1   1 0 0 0 1 1 0
    1 1 0 1 0 1 1   0 1 0 1 1 1 1
    
  • Tape the elements of the plain text with the respective elements of the ley string which hold the same positions.
    Example for position 1, we encrypt as follows,
    E( 1, 1 )   =  1  XOR  1
                = 0
    
  • Similarly, after performing the encryption for the whole plain text, we get the following results,
    1 0 0 1 0 0 1   1 0 0 0 1 1 0
    1 1 0 1 0 1 1   0 1 0 1 1 1 1 
    ------------------------------
    0 1 0 0 0 1 0   1 1 0 1 0 0 1
    

Note: You can cross-check your answer by applying the decryption process over the ciphertext, and if it comes back to be the same as the plain text, then it means that our answer is correct.



Comments and Discussions!

Load comments ↻





Copyright © 2024 www.includehelp.com. All rights reserved.