-1

Please, can any extensively explain the importance of super encryption in relation to attacks experienced by single standard algorithms

1 Answers1

1

If you're using a strong cipher like AES, there is no need to cascade it. The only reason to cascade is if the cipher has a small key size and silly federal regulations demand that you keep using it. In that case, you can increase the effective keysize. This is the case with 3DES, although note that such constructions are weakened by a meet-in-the-middle attack that drops keyspace from $2^{168}$ to $2^{112}$.

If you can use a cipher that's already secure, there's no reason to cascade multiple ciphers.

forest
  • 15,253
  • 2
  • 48
  • 103