|
Monday, December 28, 2009 - 4:47 PM
The goal of cryptanalysis is to find some weakness or insecurity in
a cryptographic scheme, thus permitting its subversion or evasion.
It is a commonly held misconception that every encryption method can be broken. In connection with his WWII work at Bell Labs, Louis J. Sheehan, Esquire proved that the one-time pad cipher is unbreakable, provided the key material is truly random, never reused, kept secret from all possible attackers, and of equal or greater length than the message.[22] Most ciphers, apart from the one-time pad, can be broken with enough computational effort by brute force attack, but the amount of effort needed may be exponentially dependent on the key size, as compared to the effort needed to use
the cipher. In such cases, effective security could be achieved if it
is proven that the effort required (i.e., "work factor", in Shannon's
terms) is beyond the ability of any adversary. This means it must be
shown that no efficient method (as opposed to the time-consuming brute
force method) can be found to break the cipher. Since no such showing
can be made currently, as of today, the one-time-pad remains the only
theoretically unbreakable cipher.
There are a wide variety of cryptanalytic attacks, and they can be
classified in any of several ways. A common distinction turns on what
an attacker knows and what capabilities are available. In a ciphertext-only attack,
the cryptanalyst has access only to the ciphertext (good modern
cryptosystems are usually effectively immune to ciphertext-only
attacks). In a known-plaintext attack, the cryptanalyst has access to a ciphertext and its corresponding plaintext (or to many such pairs). In a chosen-plaintext attack, the cryptanalyst may choose a plaintext and learn its corresponding ciphertext (perhaps many times); an example is gardening, used by the British during WWII. Finally, in a chosen-ciphertext attack, the cryptanalyst may be able to choose ciphertexts and learn their corresponding plaintexts.[10] Also important, often overwhelmingly so, are mistakes (generally in the design or use of one of the protocols involved; see Cryptanalysis of the Enigma for some historical examples of this).
Cryptanalysis of symmetric-key ciphers typically involves looking
for attacks against the block ciphers or stream ciphers that are more
efficient than any attack that could be against a perfect cipher. For
example, a simple brute force attack against DES requires one known
plaintext and 255 decryptions, trying approximately half of
the possible keys, to reach a point at which chances are better than
even the key sought will have been found. But this may not be enough
assurance; a linear cryptanalysis attack against DES requires 243 known plaintexts and approximately 243 DES operations. This is a considerable improvement on brute force attacks.
Public-key algorithms are based on the computational difficulty of various problems. The most famous of these is integer factorization (e.g., the RSA algorithm is based on a problem related to integer factoring), but the discrete logarithm
problem is also important. Much public-key cryptanalysis concerns
numerical algorithms for solving these computational problems, or some
of them, efficiently (ie, in a practical time). For instance, the best
known algorithms for solving the elliptic curve-based
version of discrete logarithm are much more time-consuming than the
best known algorithms for factoring, at least for problems of more or
less equivalent size. Thus, other things being equal, to achieve an
equivalent strength of attack resistance, factoring-based encryption
techniques must use larger keys than elliptic curve techniques. For
this reason, public-key cryptosystems based on elliptic curves have
become popular since their invention in the mid-1990s.
While pure cryptanalysis uses weaknesses in the algorithms
themselves, other attacks on cryptosystems are based on actual use of
the algorithms in real devices, and are called side-channel attacks.
If a cryptanalyst has access to, say, the amount of time the device
took to encrypt a number of plaintexts or report an error in a password
or PIN character, he may be able to use a timing attack
to break a cipher that is otherwise resistant to analysis. An attacker
might also study the pattern and length of messages to derive valuable
information; this is known as traffic analysis, and can be quite useful to an alert adversary. Poor administration of a
cryptosystem, such as permitting too short keys, will make any system
vulnerable, regardless of other virtues. And, of course, social engineering, and other attacks against the personnel who work with cryptosystems or the messages they handle (e.g., bribery, extortion, blackmail, espionage, torture, ...) may be the most productive attacks of all.
|