

Incryptography,ciphertext orcyphertext is the result ofencryption performed onplaintext using an algorithm, called acipher.[1] Ciphertext is also known as encrypted or encoded information because it contains a form of the original plaintext that is unreadable by a human or computer without the proper cipher to decrypt it. This process prevents the loss of sensitive information via hacking.Decryption, the inverse of encryption, is the process of turning ciphertext into readable plaintext. Ciphertext is not to be confused withcodetext, because the latter is a result of a code, not a cipher.
Let be the plaintext message that Alice wants to secretly transmit to Bob and let be the encryption cipher, where is acryptographic key. Alice must first transform the plaintext into ciphertext,, in order to securely send the message to Bob, as follows:
In a symmetric-key system, Bob knows Alice's encryption key. Once the message is encrypted, Alice can safely transmit it to Bob (assuming no one else knows the key). In order to read Alice's message, Bob must decrypt the ciphertext using which is known as the decryption cipher,
Alternatively, in a non-symmetric key system, everyone, not just Alice and Bob, knows the encryption key; but the decryption key cannot be inferred from the encryption key. Only Bob knows the decryption key and decryption proceeds as
Thehistory of cryptography began thousands of years ago. Cryptography uses a variety of different types of encryption. Earlier algorithms were performed by hand and are substantially different from modernalgorithms, which are generally executed by a machine.
Historical pen and paper ciphers used in the past are sometimes known asclassical ciphers. They include:
Historical ciphers are not generally used as a standalone encryption technique because they are quite easy to crack. Many of the classical ciphers, with the exception of the one-time pad, can be cracked usingbrute force.
Modern ciphers are more secure than classical ciphers and are designed to withstand a wide range of attacks. An attacker should not be able to find the key used in a modern cipher, even if they know any specifics about the plaintext and its corresponding ciphertext. Modern encryption methods can be divided into the following categories:
In a symmetric key algorithm (e.g.,DES,AES), the sender and receiver have a shared key established in advance: the sender uses the shared key to perform encryption; the receiver uses the shared key to perform decryption. Symmetric key algorithms can either beblock ciphers orstream ciphers. Block ciphers operate on fixed-length groups of bits, called blocks, with an unvarying transformation. Stream ciphers encrypt plaintext digits one at a time on a continuous stream of data, with the transformation of successive digits varying during the encryption process.
In an asymmetric key algorithm (e.g.,RSA), there are two different keys: apublic key and aprivate key. Thepublic key is published, thereby allowing any sender to perform encryption. Theprivate key is kept secret by the receiver, thereby allowing only the receiver to correctly perform decryption.

Cryptanalysis (also referred to as codebreaking orcracking the code) is the study of applying various methodologies to obtain the meaning of encrypted information, without having access to the cipher required to correctly decrypt the information. This typically involves gaining an understanding of the system design and determining the cipher.
Cryptanalysts can follow one or moreattack models to crack a cipher, depending upon what information is available and the type of cipher being analyzed. Ciphertext is generally the most easily obtained part of acryptosystem and therefore is an important part of cryptanalysis.

{{cite book}}: CS1 maint: multiple names: authors list (link)