Home » Computer Network Privacy

Computer Network Privacy

by Online Tutorials Library

Privacy

The concept of how to achieve privacy has not been changed for thousands of years: the message cannot be encrypted. The message must be rendered as opaque to all the unauthorized parties. A good encryption/decryption technique is used to achieve privacy to some extent. This technique ensures that the eavesdropper cannot understand the contents of the message.

Encryption/Decryption

Encryption: Encryption means that the sender converts the original information into another form and sends the unintelligible message over the network.

Decryption: Decryption reverses the Encryption process in order to transform the message back to the original form.

The data which is to be encrypted at the sender site is known as plaintext, and the encrypted data is known as ciphertext. The data is decrypted at the receiver site.

There are two types of Encryption/Decryption techniques:

  • Privacy with secret key Encryption/Decryption
  • Privacy with public key Encryption/Decryption

Computer Network Privacy

Secret Key Encryption/Decryption technique

Computer Network Privacy

  • In Secret Key Encryption/Decryption technique, the same key is used by both the parties, i.e., the sender and receiver.
  • The sender uses the secret key and encryption algorithm to encrypt the data; the receiver uses this key and decryption algorithm to decrypt the data.
  • In Secret Key Encryption/Decryption technique, the algorithm used for encryption is the inverse of the algorithm used for decryption. It means that if the encryption algorithm uses a combination of addition and multiplication, then the decryption algorithm uses a combination of subtraction and division.
  • The secret key encryption algorithm is also known as symmetric encryption algorithm because the same secret key is used in bidirectional communication.
  • In secret key encryption/decryption algorithm, the secret code is used by the computer to encrypt the information before it is sent over the network to another computer.
  • The secret key requires that we should know which computers are talking to each other so that we can install the key on each computer.

Data Encryption Standard (DES)

  • The Data Encryption Standard (DES) was designed by IBM and adopted by the U.S. government as the standard encryption method for nonmilitary and nonclassified use.
  • The Data Encryption Standard is a standard used for encryption, and it is a form of Secret Key Cryptography.

Advantage

Efficient: The secret key algorithms are more efficient as it takes less time to encrypt the message than to encrypt the message by using a public key encryption algorithm. The reason for this is that the size of the key is small. Due to this reason, Secret Key Algorithms are mainly used for encryption and decryption.

Disadvantages of Secret Key Encryption

The Secret Key Encryption/Decryption has the following disadvantages:

  • Each pair of users must have a secret key. If the number of people wants to use this method in the world is N, then there are N(N-1)/2 secret keys. For example, for one million people, then there are half billion secret keys.
  • The distribution of keys among different parties can be very difficult. This problem can be resolved by combining the Secret Key Encryption/Decryption with the Public Key Encryption/Decryption algorithm.

Public Key Encryption/Decryption technique

  • There are two keys in public key encryption: a private key and a public key.
  • The private key is given to the receiver while the public key is provided to the public.

Computer Network Privacy

In the above figure, we see that A is sending the message to user B. ‘A’ uses the public key to encrypt the data while ‘B’ uses the private key to decrypt the data.

  • In public key Encryption/Decryption, the public key used by the sender is different from the private key used by the receiver.
  • The public key is available to the public while the private key is kept by each individual.
  • The most commonly used public key algorithm is known as RSA.

Advantages of Public Key Encryption

  • The main restriction of private key encryption is the sharing of a secret key. A third party cannot use this key. In public key encryption, each entity creates a pair of keys, and they keep the private one and distribute the public key.
  • The number of keys in public key encryption is reduced tremendously. For example, for one million users to communicate, only two million keys are required, not a half-billion keys as in the case of secret key encryption.

Disadvantages of Public Key Encryption

  • Speed: One of the major disadvantage of the public-key encryption is that it is slower than secret-key encryption. In secret key encryption, a single shared key is used to encrypt and decrypt the message which speeds up the process while in public key encryption, different two keys are used, both related to each other by a complex mathematical process. Therefore, we can say that encryption and decryption take more time in public key encryption.
  • Authentication: A public key encryption does not have a built-in authentication. Without authentication, the message can be interpreted or intercepted without the user’s knowledge.
  • Inefficient: The main disadvantage of the public key is its complexity. If we want the method to be effective, large numbers are needed. But in public key encryption, converting the plaintext into ciphertext using long keys takes a lot of time. Therefore, the public key encryption algorithms are efficient for short messages not for long messages.

Differences b/w Secret Key Encryption & Public Key Encryption

Basis for Comparison Secret Key Encryption Public Key Encryption
Define Secret Key Encryption is defined as the technique that uses a single shared key to encrypt and decrypt the message. Public Key Encryption is defined as the technique that uses two different keys for encryption and decryption.
Efficieny It is efficient as this technique is recommended for large amounts of text. It is inefficient as this technique is used only for short messages.
Other name It is also known as Symmetric Key encryption. It is also known as Asymmetric Key Encryption.
Speed Its speed is high as it uses a single key for encryption and decryption. Its speed is slow as it uses two different keys, both keys are related to each other through the complicated mathematical process.
Algorithms The Secret key algorithms are DES, 3DES, AES & RCA. The Public key algorithms are Diffie-Hellman, RSA.
Purpose The main purpose of the secret key algorithm is to transmit the bulk data. The main purpose of the public key algorithm is to share the keys securely.
Next TopicDigital Signature

You may also like