in Computer Networks edited by
9,035 views
23 votes
23 votes

Using public key cryptography, $X$ adds a digital signature σ to message $M$, encrypts $\langle M, \sigma \rangle$, and sends it to $Y$, where it is decrypted. Which one of the following sequences of keys is used for the operations?

  1.  Encryption: $X’s$ private key followed by $Y’s$ private key;
     Decryption: $X’s$ public key followed by $Y’s$ public key;
     
  2.  Encryption: $X’s$ private key followed by $Y’s$ public key;
     Decryption: $X’s$ public key followed by $Y’s$ private key;
     
  3.  Encryption: $X’s$ public key followed by $Y’s$ private key;
     Decryption: $Y’s$ public key followed by $X’s$ private key;
     
  4.  Encryption: $X’s$ private key followed by $Y’s$ public key;
     Decryption: $Y’s$ private key followed by $X’s$ public key
in Computer Networks edited by
by
9.0k views

1 comment

This topic is not in syllabus of GATE 2021 as it comes under network security: basics of public key and private key cryptography, digital signatures and certificates

Source: https://gatecse.in/gate-2021-syllabus-including-changes/
2
2

3 Answers

41 votes
41 votes
Best answer

$X$ adds his digital signature$:$ In order to identify the authentic user, $X$ uses his Private Key to encrypt his signature.

$X$ then encrypts the whole message with the digital signature$:\ X$ uses $Y's$ Public Key to encrypt the message so that $Y$ can decipher it when it reaches to him using his private key.

Message then reaches $Y$.

$Y$ then uses his Private key to decrypt the message, and extracts the message and along with the signature.

But as the signature has been encrypted using $X's$ private key so$:$

$Y$ uses $X's$ Public Key to see the signature if it matches $X's$ actual signature (this step ensures that no one can fake as $X$ and sends a message to $Y$ ). 

Nobody can tamer the message as in order to do that he/she has to first know $Y's$ private key to decipher the message extract the signature and then change the signature and then recreate that using $X's$ private key which is not with him.

So, sequence of operations:

$X's$ Private Key$\Rightarrow$Y's public key$\Rightarrow$Y's Private key$\Rightarrow$X's public Key.

Answer is option (D).

edited by

4 Comments

Rupendra Choudhary The point made by you for option B is incorrect however the option is also incorrect.

X's private key is used for digitally signing the message and then Y's public key is used to encrypt the message, but the next step should be to first decrypt the whole message using Y's private key followed by usage of X's public key for verifying the signatures. 

So the option D follows these steps and hence it is correct.

0
0
Y's private key and X's private are not allow to travel on channel.only public keys are allow to travel on channel
0
0
is this question out of syllabus?
0
0
0 votes
0 votes
It is obvious that X can't encrypt using its own public key as it leads to security breach. X has to encrypt using its private key. So, option (c) is incorrect.

As X can only know about Y's public key (and not private key), this message will further be encrypted using Y's public key. So, option (a) is incorrect.

While decrypting, Y can decrypt the message (using its private key) only after deciphering the encrypted message using X's public key. Accordingly, the option (b) is also not correct.

 

 

therefore option D.
–2 votes
–2 votes
ans d)

2 Comments

Why Option B is wrong ?
0
0

@jay rathod let us suppose B is correct than

Step1: X adds digital signature to M, which can be done using X's private key, say XPR. So now we have

<M,σ> as <M,(XPR,M)>

Step2: X Encrypts <M,σ> (after signing digitally, we are encrypting it to send)  using public key of Y, so we have YPU(M,(XPR,M)) then send to Y.

Step 3: At y, Decrypt using X's public key. XPU(YPU(M,(XPR,M))). which doesn't seems to generate the plain text as order is not correct. 

Now instead, If I would have chosen D, then ill first decrypt using Y's private key i.e YPR(XPU(YPU(M,(XPR,M))) which will give (M,(XPR,M)).

Step 4: Now apply X public key to verify if sender's identity is correct or not by extracting out the digital signature and retrieving M, i.e XPU(XPR,M)=M

So correct order of operations is in D.

1
1
Answer:

Related questions