top button
Flag Notify
Site Registration

What is symmetric key cryptography?

+1 vote
398 views
What is symmetric key cryptography?
posted Jun 1, 2014 by Vrije Mani Upadhyay

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

2 Answers

+1 vote

An system in which the sender and receiver share a single, common key that is used to encrypt and decrypt the message. Say you are given a message "Hello World" and Your key is the "K" then

"Hello World" + "K" = Encrypted Message 
Encrypted Message + "K" = "Hello World"  (Assume + as crypto operation)

In comparison to public-key algos, which utilizes two keys - a public key to encrypt messages and a private key to decrypt them.

Symmetric-key systems are simpler and faster, but their main drawback is that the two parties must somehow exchange the key in a secure way which is not the issue with Public Key encryption as only public key is shared and private key is never shared.

answer Jun 1, 2014 by Devyani
0 votes

An encryption system in which the sender and receiver of a message share a single, common key that is used to encrypt and decrypt the message. Contrast this with public key-cryptology, which utilizes two keys - a public key to encrypt messages and a private key to decrypt them. Symmetric-key systems are simpler and faster, but their main drawback is that the two parties must somehow exchange the key in a secure way. Public-key encryption avoids this problem because the public key can be distributed in a non-secure way, and the private key is never transmitted. Symmetric-key cryptography is sometimes called secret-key cryptography. The most popular symmetric-key system is the Data Encryption Standard (DES).

Ref: http://www.webopedia.com/TERM/S/symmetric_key_cryptography.html

answer Jun 1, 2014 by anonymous
...