Binary Goppa code

In mathematics and computer science, the binary Goppa code is an error-correcting code that belongs to the class of general Goppa codes originally described by Valerii Denisovich Goppa, but the binary structure gives it several mathematical advantages over non-binary variants, also providing a better fit for common usage in computers and telecommunication. Binary Goppa codes have interesting properties suitable for cryptography in McEliece-like cryptosystems and similar setups.

Construction and properties

A binary Goppa code is defined by a polynomial g(x) of degree t over a finite field GF(2^m) without multiple zeros, and a sequence L of n distinct elements from GF(2^m) that aren't roots of the polynomial:

\forall i,j \in \{0,\ldots,n-1\}: L_i \in GF(2^m) \and L_i \neq L_j \and g(L_i) \neq 0

Codewords belong to the kernel of syndrome function, forming a subspace of \{0,1\}^n:

\Gamma(g,L)=\left\{ c \in \{0,1\}^n \left| \sum_{i=0}^{n-1} \frac{c_i}{x-L_i} \equiv 0 \mod g(x) \right. \right\}

Code defined by a tuple (g,L) has minimum distance 2t+1, thus it can correct t=\left\lfloor \frac{(2t+1)-1}{2} \right\rfloor errors in a word of size n-mt using codewords of size n. It also possesses a convenient parity-check matrix H in form


H=VD=\begin{pmatrix}
1 & 1 & 1 & \cdots & 1\\
L_0^1 & L_1^1 & L_2^1 & \cdots & L_{n-1}^1\\
L_0^2 & L_1^2 & L_2^2 & \cdots & L_{n-1}^2\\
\vdots & \vdots & \vdots & \ddots & \vdots \\
L_0^t & L_1^t & L_2^t & \cdots & L_{n-1}^t
\end{pmatrix}
\begin{pmatrix}
\frac{1}{g(L_0)} & & & & \\
 & \frac{1}{g(L_1)} & & & \\
 & & \frac{1}{g(L_2)} & & \\
 & & & \ddots & \\
 & & & & \frac{1}{g(L_{n-1})}
\end{pmatrix}

Note that this form of the parity-check matrix, being composed of a Vandermonde matrix V and diagonal matrix D, shares the form with check matrices of alternant codes, thus alternant decoders can be used on this form. Such decoders usually provide only limited error-correcting capability (in most cases t/2).

For practical purposes, parity-check matrix of a binary Goppa code is usually converted to a more computer-friendly binary form by a trace construction, that converts the t-by-n matrix over GF(2^m) to a mt-by-n binary matrix by writing polynomial coefficients of GF(2^m) elements on m successive rows.

Decoding

Decoding of binary Goppa codes is traditionally done by Patterson algorithm, which gives good error-correcting capability (it corrects all t design errors), and is also fairly simple to implement.

Patterson algorithm converts a syndrome to a vector of errors. The syndrome of a word c=(c_0,\dots,c_{n-1}) is expected to take a form of

s(x) \equiv \sum_{c_i=1} \frac{1}{x - L_i} \mod g(x)

Alternative form of a parity-check matrix based on formula for s(x) can be used to produce such syndrome with a simple matrix multiplication.

The algorithm then computes v(x) \equiv \sqrt{s(x)^{-1}-x} \mod g(x). That fails when s(x) \equiv 0, but that is the case when the input word is a codeword, so no error correction is necessary.

v(x) is reduced to polynomials a(x) and b(x) using the extended euclidean algorithm, so that a(x) \equiv b(x)\cdot v(x) \mod g(x), while \deg(a)\leq\lfloor t/2 \rfloor and \deg(b)\leq\lfloor (t-1)/2 \rfloor.

Finally, the error locator polynomial is computed as \sigma(x) = a(x)^2 + x\cdot b(x)^2. Note that in binary case, locating the errors is sufficient to correct them, as there's only one other value possible. Note that in all non-binary cases, separate error correction polynomial has to be computed as well.

If the original codeword was decodable and the e=(e_0,e_1,\dots,e_{n-1}) was the error vector, then

\sigma(x) = \prod_{e_i=1} (x-L_i)

Factoring or evaluating all roots of \sigma(x) therefore gives enough information to recover the error vector and fix the errors.

Properties and usage

Binary Goppa codes viewed as a special case of Goppa codes have the interesting property that they correct full \deg(g) errors, while only \deg(g)/2 errors in ternary and all other cases. Asymptotically, this error correcting capability meets the famous Gilbert–Varshamov bound.

Because of the high error correction capacity compared to code rate and form of parity-check matrix (which is usually hardly distinguishable from a random binary matrix of full rank), the binary Goppa codes are used in several post-quantum cryptosystems, notably McEliece cryptosystem and Niederreiter cryptosystem.

References

See also

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