Symmetric vs. Asymmetric Encryption
Encryption aims to provide confidentiality , the first listed objective in the CIA Triad (see Crypt(?) ). It transforms meaningful data (the cleartext ) into a form that conceals its meaning (the ciphertext ). Of course, concealing should hold for all parties except the one(s) that are intended to read the data, i.e., to decrypt. Decryption is thus the reverse operation of encryption; it means to obtain - by proper means (owning and using a decryption key) - the plaintext from the ciphertext . Decryption allows restoring the data in its original form by legitimate parties. Others (e.g., adversaries ) should not be able to reverse the encryption, and if they succeed (in an efficient time), this is the result of successful cryptanalysis . If the adversary manages to revert (even partially) the ciphertext into the plaintext, we say that the ...