Triple DES
Triple DES (also 3DES) is the encrypt-decrypt-encrypt EDE mode of the Data Encryption Standard (DES) cipher algorithm.
The encryption is done by
- C = encryptk3(decryptk2(encryptk1(P))).
- P ... plaintext
- C ... ciphertext
- ki ... key #i
- encrypt, decrypt ... DES
The use of three steps is essential to prevent meet-in-the-middle attacks. The choice of decryption for the middle step (as opposed to encryption) does not affect the security of the algorithm but instead lets tools that implement triple DES interoperate with legacy single DES tools.
See also: