From c47a651d0fbcb3db81db7d787876bc2e50d8e461 Mon Sep 17 00:00:00 2001 From: Mirek Kratochvil Date: Mon, 2 Apr 2012 00:44:19 +0200 Subject: [PATCH] irreducible polynomials work --- include/codecrypt.h | 7 ++++--- lib/polynomial.cpp | 38 ++++++++++++++++++++++++++++---------- 2 files changed, 32 insertions(+), 13 deletions(-) diff --git a/include/codecrypt.h b/include/codecrypt.h index d7e2cbc..e1599e0 100644 --- a/include/codecrypt.h +++ b/include/codecrypt.h @@ -35,8 +35,8 @@ public: class prng { public: - virtual int random (uint) = 0; - virtual void request_seed (uint) = 0; + virtual uint random (uint) = 0; + virtual void seed (uint) = 0; }; /* @@ -80,7 +80,8 @@ class polynomial : public bvector { public: void strip(); - uint degree() const; + int degree() const; + bool zero() const; void add (const polynomial&); void mod (const polynomial&); void mult (const polynomial&); diff --git a/lib/polynomial.cpp b/lib/polynomial.cpp index 7a69f05..8bc926f 100644 --- a/lib/polynomial.cpp +++ b/lib/polynomial.cpp @@ -3,9 +3,19 @@ using namespace ccr; -uint polynomial::degree() const +#if 0 +#include +using namespace std; +void dump (const polynomial&t) { - uint r = -1; + for (uint i = 0; i < t.size(); ++i) cout << t[i]; + cout << endl; +} +#endif + +int polynomial::degree() const +{ + int r = -1; for (uint i = 0; i < size(); ++i) if (item (i) ) r = i; return r; } @@ -15,20 +25,26 @@ void polynomial::strip() resize (degree() + 1); } +bool polynomial::zero() const +{ + for (uint i = 0; i < size(); ++i) if (item (i) ) return false; + return true; +} + void polynomial::add (const polynomial&f) { - uint df = f.degree(); + int df = f.degree(); if (df > degree() ) resize (df + 1); - for (uint i = 0; i <= df; ++i) item (i) = item (i) ^ f[i]; + for (int i = 0; i <= df; ++i) item (i) = item (i) ^ f[i]; } void polynomial::mod (const polynomial&f) { - uint df = f.degree(); - uint d; + int df = f.degree(); + int d; // while there's place to substract, reduce by x^(d-df)-multiply of f while ( (d = degree() ) >= df) { - for (uint i = 0; i <= df; ++i) + for (int i = 0; i <= df; ++i) item (i + d - df) = item (i + d - df) ^ f[i]; } strip(); @@ -54,9 +70,9 @@ polynomial polynomial::gcd (polynomial b) //eukleides if (a.degree() < 0) return b; for (;;) { - if (b.degree() < 0) return a; + if (b.zero() ) return a; a.mod (b); - if (a.degree() < 0) return b; + if (a.zero() ) return b; b.mod (a); } //unreachable @@ -69,15 +85,17 @@ bool polynomial::is_irreducible() polynomial xi; //x^(2^i) in our case polynomial xmodf, t; - xmodf.resize (2); //precompute (x mod f) + xmodf.resize (2); //precompute (x mod f) although it is usually just x xmodf[0] = 0; xmodf[1] = 1; //x + xi = xmodf; xmodf.mod (*this); //mod f uint n = degree(); for (uint i = 1; i <= n / 2; ++i) { t = xi; t.mult (xi); //because mult would destroy xi on xi.mult(xi) + t.mod(*this); xi = t; t.add (xmodf);