|
|
|
Any disadvantages of using multiple encryption algorithms on same data?
|
|
4 points
by kbns
1233 days ago
|
|
My aim is to encrypt data using multiple encryption algorithms using different encryption keys in a layered fashion for future proof. I'll use
1. AES-256-CBC
2. RSA with > 8192 key
3. Triple DES
4 Blowfish
5. Twofish
6. CHACHA20 I'm still not sure in which order to use them but please list disadvantages of using this method except size of cypher text. |
|
Honestly, just stick to one algorithm and use that. Choose something modern. There is no evidence that AES-256 has problems. CBC mode allows some alteration of the plaintext but it's limited and noticeable, best to include an integrity check (HMAC or CMAC).
You really don't want to encrypt bulk data using RSA, it's simply not designed for that.