β Back to all tools
π Triple DES Encryption / Decryption
3DES applies DES cipher three times to each block. Stronger than DES but deprecated β provided for legacy compatibility.
β
Triple DES was deprecated by NIST in 2023. It is still more secure than single DES but significantly slower and weaker than AES. Use only for legacy system compatibility. For new projects, use AES-256.
Settings
3DES
3DES uses 3 Γ 8-byte DES keys concatenated (24 bytes total). Shorter keys will be padded.
Must match IV used during encryption for decryption to work
βΉ
3DES key variants: Keying option 1 (3 independent keys, 168-bit) is most secure. Keying option 2 (K1=K3β K2, 112-bit) is common. Keying option 3 (K1=K2=K3) equals single DES.
Input
0 chars
Output
Encrypted / decrypted result will appear hereβ¦
DES vs 3DES vs AES Comparison
| Algorithm | Key Size | Security | Status |
|---|---|---|---|
| DES | 56-bit | Broken | Withdrawn 2005 |
| 3DES | 112 / 168-bit | Weak | Deprecated 2023 |
| AES-256 | 256-bit | Strong | β Current Standard |
Frequently Asked Questions
Is 3DES more secure than DES?
Yes, Triple DES is significantly more secure than standard DES by applying the cipher three times. However, it is still deprecated by NIST and major standards bodies β use AES-256 for any new encryption needs.
What key size does 3DES use?
3DES uses a 168-bit key (three 56-bit DES keys), though due to a meet-in-the-middle attack the effective security is approximately 112 bits. This is much weaker than AES-256's 256-bit security.
Should I use 3DES for new projects?
No. 3DES is deprecated and should only be used for legacy compatibility purposes. For all new projects, AES-256 is the industry standard and provides superior security and performance.