Data Encryption Algorithm

From GM-RKB
Jump to navigation Jump to search

A Data Encryption Algorithm is a Data Cryptographic Algorithm that encodes unencrypted data into ciphertext using a encryption key.



References

2021a

  • (Wikipedia, 2021) ⇒ https://en.wikipedia.org/wiki/Encryption Retrieved:2021-10-24.
    • In cryptography, encryption is the process of encoding information. This process converts the original representation of the information, known as plaintext, into an alternative form known as ciphertext. Ideally, only authorized parties can decipher a ciphertext back to plaintext and access the original information. Encryption does not itself prevent interference but denies the intelligible content to a would-be interceptor.

      For technical reasons, an encryption scheme usually uses a pseudo-random encryption key generated by an algorithm. It is possible to decrypt the message without possessing the key but, for a well-designed encryption scheme, considerable computational resources and skills are required. An authorized recipient can easily decrypt the message with the key provided by the originator to recipients but not to unauthorized users.

      Historically, various forms of encryption have been used to aid in cryptography. Early encryption techniques were often utilized in military messaging. Since then, new techniques have emerged and become commonplace in all areas of modern computing. Kessler, Gary (November 17, 2006). "An Overview of Cryptography". Princeton University.</ref> Modern encryption schemes utilize the concepts of public-key and symmetric-key. Modern encryption techniques ensure security because modern computers are inefficient at cracking the encryption.


2021b

In cryptography, we start with the unencrypted data, referred to as plaintext. Plaintext is encrypted into ciphertext, which will in turn (usually) be decrypted back into usable plaintext. The encryption and decryption is based upon the type of cryptography scheme being employed and some form of key. For those who like formulas, this process is sometimes written as:

$C = E_k(P)$

$P = D_k(C)$

where $P$ = plaintext, $C$ = ciphertext, $E$ = the encryption method, $D$ = the decryption method, and $k$ = the key.

2021c

Figure 1: Three types of cryptography: secret key, public key, and hash function.