Birthday attack: Difference between revisions

From Citizendium
Jump to navigation Jump to search
imported>Caesar Schinas
m (Robot: Changing template: TOC-right)
imported>Sandy Harris
No edit summary
Line 10: Line 10:
A good approximation for the number of instances required to find a collision is <math>1.18 * \sqrt{n}</math>. For example, to have a 50% chance of finding two birthdays the same, you need <math>1.18 * \sqrt{365} \approx 23</math> people. For cryptography, a simpler approximation is used; we say that for an object of size <math>b</math> bits, the attack cost is about <math>2^{b/2}</math>. To find a collision in a 128-bit hash, the attacker needs to perform, on average, about 2<sup>64</sup> hash operations, to find a repeated ciphertext for a 64-bit block cipher or a repetition of a 64-bit challenge, he needs to collect and store about 2<sup>32</sup> samples, and so on.
A good approximation for the number of instances required to find a collision is <math>1.18 * \sqrt{n}</math>. For example, to have a 50% chance of finding two birthdays the same, you need <math>1.18 * \sqrt{365} \approx 23</math> people. For cryptography, a simpler approximation is used; we say that for an object of size <math>b</math> bits, the attack cost is about <math>2^{b/2}</math>. To find a collision in a 128-bit hash, the attacker needs to perform, on average, about 2<sup>64</sup> hash operations, to find a repeated ciphertext for a 64-bit block cipher or a repetition of a 64-bit challenge, he needs to collect and store about 2<sup>32</sup> samples, and so on.


Hashes are therefore routinely designed for output twice as large as the key size of the [[cipher]]s they are intended for use with. A [[block cipher]] with a 128-bit key, for example, needs 2<sup>127</sup> encryptions to break by [[brute force]]. To provide authentication in a system that uses such a [[block cipher]], or to hash a passphrase to produce a key for it, a hash algorithm with comparable strength is needed. A 256-bit hash is required to give 2<sup>128</sup> resistance to a birthday attack.
Hashes are therefore routinely designed for output twice as large as the key size of the [[cipher]]s they are intended for use with. A [[brute force attack]] on [[block cipher]] with a 128-bit key, for example, needs on average 2<sup>127</sup> encryptions. To provide authentication in a system that uses such a block cipher, or to hash a passphrase to produce a key for it, a hash algorithm with comparable strength is needed. A 256-bit hash is required to give 2<sup>128</sup> resistance to a birthday attack.


In US government standards, for example, the current [[block cipher]] standard is [[AES]] with key sizes of 128, 192 or 256 bits. The corresponding standard for a [[cryptographic hash]] is [[SHA-2]] which specifies 256-bit, 384-bit and 512-bit hashes for use with [[AES]], plus a 224-bit hash for use with [[Triple DES]].
In US government standards, for example, the current block cipher standard is [[AES]] with key sizes of 128, 192 or 256 bits. The corresponding standard for a [[cryptographic hash]] is [[SHA-2]] which specifies 256-bit, 384-bit and 512-bit hashes for use with [[AES]], plus a 224-bit hash for use with [[Triple DES]].

Revision as of 07:28, 30 November 2009

This article is a stub and thus not approved.
Main Article
Discussion
Related Articles  [?]
Bibliography  [?]
External Links  [?]
Citable Version  [?]
 
This editable Main Article is under development and subject to a disclaimer.

A birthday attack is a cryptographic attack based on the mathematics exemplified by the birthday paradox. This math turns up whenever the question of two cryptographic operations producing the same result becomes an issue.

  • For a cryptographic hash or message digest function, if an enemy can find two inputs that hash to the same output, then he may be able to subvert the authentication that these functions are intended to provide. See collision resistance for details.
  • If a challenge-response authentication system produces the same challenge twice then an enemy who has kept careful records could break in by looking up the correct response and giving it.
  • When two output blocks from a block cipher are identical, the enemy gains some information. Assuming the key has not changed, he then knows the two input blocks were identical. A code book attack is based on accumulating such information.

A good approximation for the number of instances required to find a collision is . For example, to have a 50% chance of finding two birthdays the same, you need people. For cryptography, a simpler approximation is used; we say that for an object of size bits, the attack cost is about . To find a collision in a 128-bit hash, the attacker needs to perform, on average, about 264 hash operations, to find a repeated ciphertext for a 64-bit block cipher or a repetition of a 64-bit challenge, he needs to collect and store about 232 samples, and so on.

Hashes are therefore routinely designed for output twice as large as the key size of the ciphers they are intended for use with. A brute force attack on block cipher with a 128-bit key, for example, needs on average 2127 encryptions. To provide authentication in a system that uses such a block cipher, or to hash a passphrase to produce a key for it, a hash algorithm with comparable strength is needed. A 256-bit hash is required to give 2128 resistance to a birthday attack.

In US government standards, for example, the current block cipher standard is AES with key sizes of 128, 192 or 256 bits. The corresponding standard for a cryptographic hash is SHA-2 which specifies 256-bit, 384-bit and 512-bit hashes for use with AES, plus a 224-bit hash for use with Triple DES.