The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
2answers
114 views

C Snippets for Algebra in Finite Prime Fields

I need to solve polynomials in finite prime fields on 16-bit CPUs. I have seen people using the fields GF((2^16)+1), GF((2^16)-15), and GF((2^32)-5). I guess these choices stem from the fact that ...
4
votes
2answers
43 views

Libraries for computing Fast Fourier Transform (FFT) over a finite field

Does anyone have any recommendations for a high-performance library that can do FFT over a finite field, $\mathbb{F}_p$ where the prime, $p$, can be up to 256 bits and the the length of the vector on ...
0
votes
0answers
40 views

VBA GF(256) log table

I'm working on a function to generate QR codes in vba. I'm following this tutorial. I am now working on generating the error correction words in this step. This requires GF(256) log/antilog tables, ...
0
votes
1answer
105 views

How can I find a solution of binary matrix equation AX = B?

Given an m*n binary matrix A, m*p binary matrix B, where n > m what is an efficient algorithm to compute X such that AX=B? For example: A = 1 1 0 0 1 1 0 1 0 0 1 1 0 0 1 0 1 0 0 ...
3
votes
3answers
202 views

Implementation of Galois field arithmetic

Do you know of an implementation of Galois field arithmetic in C++? At least cases like GF(216) and GF(232) should be covered. Performance is a concern, so the implementation should have given some ...
-1
votes
1answer
550 views

GF(256) finite field multiplication function in C#

I'm implementing AES in C# and at some point (MixColumns function) I have to multiply two Bytes over the GF(2^8) finite field. So, I have three options: Use a default function that dotNet has (does ...
13
votes
1answer
442 views

Exact Large Finite Field Linear Algebra Library (e.g. GF(2^128) / GF(2^256) )

General I'm looking for a library that is able to do exact calculations on large finite fields such as GF(2128)/𝔽2128 and GF(2256)/𝔽2256. I listed the features that I need and the features that ...
1
vote
1answer
156 views

Fast Exponentiation for galois fields

I want to be able to compute g^x = g * g * g * ... * g (x times) where g is in a finite field GF(2^m). Here m is rather large, m = 256, 384, 512, etc. so lookup tables are not the solution. ...
4
votes
1answer
512 views

Finite Field (Galois Field) Linear Algebra Library for C (not C++)

I'm searching for a finite field/galois field exact linear algebra library for C (C++ is not acceptable because I need to be able to write a Haskell-binding to it and that's apparently difficult with ...
4
votes
1answer
267 views

Finite Field Linear Algebra Library for Haskell

I'm searching for a finite field linear algebra library for Haskell. Something like FFLAS-FFPACK for Haskell would be great :-). Of course, I checked hmatrix, there seems to be some support for ...