Grand Unified Finite Field library*

Implements GF(2x) for various "natural" sizes such as 28, 216 and 232.

My goals for this crate are to:

  1. help me learn to write good modules in Rust

  2. help interested users learn about finite fields (ie, Galois fields)

  3. provide a generic baseline implementation of basic maths (add, multiply, divide, etc.) over finite fields

  4. explore various optimisations/adaptations (including table-based lookups and architecture-specific SIMD code) that can selectively override some/all of the default implementations (while remaining compatible with other implementations).

Also to:

  1. provide some useful utility functions that go beyond just add, mul, div, etc. (eg, determining whether a field polynomial is primitive, or generating lookup tables for different kinds of optimisations)

Basic Use: doing maths in a particular field

As a user, the steps to take to use this library are:

Crate Name

* The crate name is deliberately hyperbolic:

Noun guff - unacceptable behavior (especially ludicrously false statements)

Copyright and Licence

This work is Copyright (C) Declan Malone, 2021.

You may freely copy and modify this work under the terms of:

If you wish to embed this work as part of another work, you may do so under the terms of:

Disclaimer: this software comes with no warranty, express or implied.