InterviewSolution
| 1. |
What do you mean by Asymmetric Encryption? |
|
Answer» There are two types of keys in ASYMMETRIC encryption i.e., PUBLIC and private keys. There is a pair of private and public keys for each party. The public key, as its name implies, can be exchanged securely with communication PARTNERS, while the private key must remain confidential (secret). The private key is TYPICALLY used to decrypt data, while the public key is used to encrypt data. To encrypt traffic between Jessica and Monica, as depicted in the above figure, the pair will exchange public keys.
Therefore, before any encrypted communication can take place, Jessica and Monica must exchange public keys. |
|