COMP128

The COMP128 algorithms are implementations of the A3 and A8 algorithms defined in the GSM standard. The A3 algorithm is used to authenticate the mobile station to the network. The A8 algorithm is used to generate the session key used by A5 to encrypt the data transmitted between the mobile station and the BTS.

Currently there exist four versions of COMP128. The first three were originally confidential. A partial description of the first version was leaked in 1997 and completed via reverse engineering. This led to a full publication in 1998.[1] The second and third versions were obtained via reverse engineering of software which verifies SIM cards compliance.[2]

Introduction

For details on the way A3 and A8 are used see Authentication Center.

A3 and A8 both take a 128-bit key (Ki) and a 128-bit challenge (RAND) as inputs. A3 produces a 32-bit response (SRES) and A8 produces a 64 bits session key (Kc).

The COMP128 algorithms combine the functionality of A3 and A8.

COMP128 algorithms

Several COMP128 algorithms were designed:

COMP128-1 description

COMP128-1 is built around a compression function with two 128 bits inputs and one 128 bits output. The function has eight rounds and is based on a butterfly structure with five stages.

// compression tables
const T<sub>0</sub>[512]: array of bytes
const T<sub>1</sub>[256]: array of bytes
const T<sub>2</sub>[128]: array of bytes
const T<sub>3</sub>[64] : array of bytes
const T<sub>4</sub>[32] : array of bytes

function comp128
    input ''RAND''[128]: array of bits
    input ''K<sub>i</sub>''[128]   : array of bits

    output ''SRES''[32]: array of bits
    output ''K<sub>c</sub>''[64]   : array of bits

    var x[32]     : array of bytes
    var bit[128]  : array of bits
    var m, n, y, z: integers

    x[16..31] := ''RAND''
    for i := 1 to 8
        x[0..15] := ''K<sub>i</sub>''
        for j := 0 to 4
            for k := 0 to 2<sup>j</sup>-1
                for l := 0 to 2<sup>4-j</sup>-1
                    m := l + k * 2<sup>5-j</sup>
                    n := m + 2<sup>4-j</sup>
                    y := (x[m] + 2 * x[n]) mod 2<sup>9-j</sup>
                    z := (2 * x[m] + x[n]) mod 2<sup>9-j</sup>
                    x[m] := T<sub>j</sub>[y]
                    x[n] := T<sub>j</sub>[z]    
                end
            end
        end
        for j := 0 to 31
            for k := 0 to 3
                bit[4 * j + k] := x[j]<sup>3-k</sup>
            end
        end
        if i < 8  
            for j := 0 to 15
                for k := 0 to 7
                    x[j + 16]<sup>7-k</sup> := bit[((8 * j + k) * 17) mod 128]
                end
            end
        end
    end
    ''SRES'' := bit[0..31]
    ''K<sub>c</sub>'' := bit[74..127] <math>\|</math> 0000000000<sub>2</sub>
end

COMP128-2/3 description

The implementation of COMP128-2 and COMP128-3 is noticeably more complex than COMP128-1. For a full description of the algorithm, the reader can view the OsmocomBB implementation or FreeRADIUS implementation, both based on the Python code from the Secrets of Sim[2] article . COMP128-2 is identical to COMP128-3 except for the fact that at the end, it clears the 10 rightmost bits of Kc.

Security

The COMP128-1 hash function is considered weak because there is insufficient diffusion of small changes in the input.

Practical attacks have been demonstrated that can recover the subscriber key from the SIM.[3]

The session keys produced by COMP128-1 and COMP128-2 have only 54 bits of entropy. This significantly weakens the A5 or A6 encryption.

References

  1. Briceno, Marc; Goldberg, Ian; Wagner, David (1998), Implementation of COMP128, archived from the original on 2009-03-18
  2. 1 2 Tamas, Jos (2013), Secrets of the SIM
  3. Brumley, Billy (2004), A3/A8 & COMP128 (PDF)

External links

This article is issued from Wikipedia - version of the 10/30/2016. The text is available under the Creative Commons Attribution/Share Alike but additional terms may apply for the media files.