Threefish

From Infogalactic: the planetary knowledge core
Jump to: navigation, search

Lua error in package.lua at line 80: module 'strict' not found.

Threefish
Skein permutation.png
General
Designers Bruce Schneier, Niels Ferguson, Stefan Lucks, Doug Whiting, Mihir Bellare, Tadayoshi Kohno, Jon Callas, Jesse Walker
First published 2008
Related to Blowfish, Twofish
Cipher detail
Key sizes 256, 512 or 1024 bits
(key size is equal to block size)
Block sizes 256, 512 or 1024 bits
Rounds 72 (80 for 1024-bit block size)
Speed 6.1 cpb on Core 2.[1]

Threefish is a symmetric-key tweakable block cipher designed as part of the Skein hash function, an entry in the NIST hash function competition. Threefish uses no S-boxes or other table lookups in order to avoid cache timing attacks;[1] its nonlinearity comes from alternating additions with exclusive ORs. In that respect, it is similar to Salsa20, TEA, and the SHA-3 candidates CubeHash and BLAKE.

Threefish and the Skein hash function were designed by Bruce Schneier, Niels Ferguson, Stefan Lucks, Doug Whiting, Mihir Bellare, Tadayoshi Kohno, Jon Callas, and Jesse Walker.

Description of the cipher[1]

Threefish works on words of 64 bits (unsigned Little endian integers). N_w \in \{4,8,16\} is the number of plaintext words and also of key words. The tweak consists of two words. All additions and subtractions are defined modulo 2^{64}.

Key schedule

Threefish uses \frac{N_r}{4} + 1 different round keys (N_r: Number of rounds). To calculate these keys the original key words k_0, k_1, \dots, k_{N_w - 1} are appended by an additional key word k_{N_w}. The tweak words t_0, t_1 are appended with an additional tweak word t_2 too.

k_{N_w} = C_{240} \oplus k_0 \oplus k_1 \oplus \dots \oplus k_{N_w - 1}; \quad C_{240} = \text{0x1BD11BDAA9FC1A22}
t_2 = t_0 \oplus t_1

The purpose of the seemingly arbitrary constant C_{240} is to frustrate some attacks that take advantage of the relationship between k_{N_w} and the other keywords.

The round key words k_{s, i} are now defined like this:


k_{s, i} =
\begin{cases}
k_{(s+i) \bmod (N_w + 1)} & i = 0, \dots, N_w - 4 \\
k_{(s+i) \bmod (N_w + 1)} + t_{s \bmod 3} & i = N_w - 3 \\
k_{(s+i) \bmod (N_w + 1)} + t_{(s + 1) \bmod 3} & i = N_w - 2 \\
k_{(s+i) \bmod (N_w + 1)} + s & i = N_w - 1
\end{cases}

Here s = 0, 1, \dots , N_r/4, and 4s is the number of the round in which the round key is used.

Mix function

The mix function takes a tuple of words (x_0, x_1) and returns another tuple of words (y_0, y_1). The function is defined like this:


y_0 = x_0 + x_1 \mod 2^{64}


y_1 = (x_1 \lll R_{(d \bmod 8), j}) \oplus y_0

R_{d, j} is a fixed set of rotation constants chosen to achieve quick diffusion.

Permute

The permutation step swaps the positions of the words according to a constant pattern. Bit-level permutation is not achieved in this step, but this is not necessary since the MIX functions provides bit-level permutations in the form of bitwise rotations.[citation needed] The Permute step and rotation constants in the MIX functions are chosen in such a way that the overall effect is complete diffusion of all the bits in a data block.[citation needed]

Because this permutation is fixed and independent of the key, the time needed to compute it does not provide information about the key or plaintext. This is important because on most modern microprocessors performance optimisations can cause the time taken to compute an array operation dependent on where the data is stored in memory. In ciphers where array lookup depends on either the key or plaintext (as is the case for the substitution step in AES), it can make the cipher vulnerable to timing attacks by examining the time required for encryption. The permutation is therefore deliberately designed to ensure that it should execute in the same fashion independent of the key being used or the data encrypted.[citation needed]

A full Threefish round

  • if d\;\bmod\;4 = 0 the round key k_{d/4,i} is added to word i
  • the mix function is applied to consecutive words, the rotation widths depend on d and the word number
  • the words are permutated using a permutation independent from the round number

Threefish256 and Threefish512 apply this round 72 times (d=0,1, \dots,71). Threefish1024 applies it 80 times(d=0,1, \dots,79).

Final operations

After all rounds are applied, the last round key is added to the words and the words are converted back to a string of bytes.

Security

In October 2010, an attack that combines rotational cryptanalysis with the rebound attack was published. The attack mounts a known-key distinguisher against 53 of 72 rounds in Threefish-256, and 57 of 72 rounds in Threefish-512. It also affects the Skein hash function.[2] This is a follow-up to the earlier attack published in February, which breaks 39 and 42 rounds respectively.[3] In response to this attack, the Skein team tweaked the rotation constants used in Threefish and thereby the key schedule constants for round 3 of the NIST hash function competition.[1]

In 2009, a related key boomerang attack against a reduced round Threefish version was published. For the 32-round version, the time complexity is 2^{226} and the memory complexity is 2^{12}; for the 33-round version, the time complexity is 2^{352.17} with a negligible memory usage. The attacks also work against the tweaked version of Threefish: for the 32-round version, the time complexity is 2^{222} and the memory complexity is 2^{12}; for the 33-round version, the time complexity is 2^{355.5} with a negligible memory usage.[4]

See also

References

  1. 1.0 1.1 1.2 1.3 Lua error in package.lua at line 80: module 'strict' not found. The paper in which Threefish was introduced.
  2. Lua error in package.lua at line 80: module 'strict' not found.
  3. Lua error in package.lua at line 80: module 'strict' not found.
  4. Lua error in package.lua at line 80: module 'strict' not found.

External links