show/hide this revision's text 2 rewrite to (try to) explain some of the maths

Encrypting twice is more secure than encrypting once, even though this may not be clear at first.

Intuitively, it appears that encrypting twice with the same algorithm gives no extra protection because an attacker can't might find another point in a key which decrypts all the chain way from the final cyphertext back to attackthe plaintext. ... But this is not the case.

E.g. I start with plaintext A and encrypt with key K1 it to get B. Then I encrypt B with key K2 to get C.

Intuitively, it seems reasonable to assume that there may well be a key, K3, which I could use to encrypt A and get C directly. If this is the case, then you have just made their job harder because they have an attacker using brute force would eventually stumble upon K3 and be able to crack 2 keysdecrypt C, with the result that the extra encryption step has not added any security.

However, it may be easier is highly unlikely that such a key exists (for you any modern encryption scheme). (When I say "highly unlikely" here, I mean what a normal person would express using the word "impossible").

Why?
Consider the keys as functions which provide a mapping from plaintext to cyphertext.
If our keys are all KL bits in length, then there are 2^KL such mappings.
However, if I use 2 keys of KL bits each, this gives me (2^KL)^2 mappings.
Not all of these can be equivalent to a single-stage encryption.

Another advantage of encrypting twice, if 2 different algorithms are used, is that if a vulnerability is found in one of the algorithms, the other algorithm still provides some security.

As others have noted, brute forcing the key is typically a last resort. An attacker will often try to break the process at some other point (e.g. using social engineering to discover the passphrase).

Another way of increasing security is to simply use a longer key with one encryption algorithm.

...Feel free to correct my maths!

show/hide this revision's text 1

Encrypting twice is more secure than encrypting once.
If the attacker can't find another point in the chain to attack, then you have just made their job harder because they have to crack 2 keys.
However, it may be easier for you to simply use a longer key with one encryption algorithm.