Click here to Skip to main content
15,884,176 members
Articles / Programming Languages / C#
Article

Implementation of Berlekamp-Massey Algorithm

Rate me:
Please Sign up or sign in to vote.
3.53/5 (6 votes)
15 Sep 2005CPOL 65K   13   4
Implementation of Berlekamp-Massey algorithm

Introduction

The Berlekamp-Massey algorithm is an efficient algorithm for determining the linear complexity of a finite binary sequence s<sub>n</sub> of length n. The algorithm takes n iterations, with the Nth iteration computing the linear complexity of the subsequence s<sub>N</sub> consisting of the first N terms of s<sub>n</sub>. Returned value (L) is the length of the shortest linear feedback shift register sequence that generates all bits in sequence s<sub>n</sub>.
(Used in NIST statistical test suite - "Linear Complexity Test".)

The Code

C#
    // Implementation of Berlekamp-Massey algorithm for calculating linear 
    // complexity of binary sequence
    // s = byte array with binary sequence
    // returns Length of LFSR with smallest length which generates s
    // for an example: int L=BerlekampMassey(new byte[] {1,0,1,0,1,1,1,0,1,0})
    //        reference: "Handbook of Applied Cryptography", p201

    public static int BerlekampMassey(byte[] s)                
    {
        int L, N, m, d;
        int n=s.Length;
        byte[] c=new byte[n];
        byte[] b=new byte[n];
        byte[] t=new byte[n];

        //Initialization
        b[0]=c[0]=1;
        N=L=0;
        m=-1;
                
        //Algorithm core
        while (N<n)
        {
            d=s[N];
            for (int i=1; i<=L; i++)
            d^=c[i]&s[N-i];            //(d+=c[i]*s[N-i] mod 2)
            if (d==1)
            {
                Array.Copy(c, t, n);    //T(D)<-C(D)
                for (int i=0; (i+N-m)<n; i++)
                    c[i+N-m]^=b[i];
                if (L<=(N>>1))
                {
                    L=N+1-L;
                    m=N;
                    Array.Copy(t, b, n);    //B(D)<-T(D)
                }
            }
            N++;
        }
        return L;
    }
}

Finally

Sorry, but this might only be useful to those freaks (like me:) that work on statistical tests and/or cryptanalysis. I just needed to put this on the Web because I couldn't find some useful implementation out there.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior)
Croatia Croatia
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
Generalberelekamp massey Pin
raza817-May-09 11:37
raza817-May-09 11:37 
GeneralJust Curious Pin
JohnDeHope315-Sep-05 4:18
JohnDeHope315-Sep-05 4:18 
GeneralRe: Just Curious Pin
vadivelkumar15-Sep-05 7:10
vadivelkumar15-Sep-05 7:10 
GeneralRe: Just Curious Pin
Miroslav Stampar15-Sep-05 22:47
Miroslav Stampar15-Sep-05 22:47 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.