fp2 0.3.5

An efficient, flexible and constant time Rust implementation of the extension field Fp^2 with modulus x^2 + 1
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Traits for implementing generic operations over finite fields.
//!
//! Currently includes two traits.
//!
//! - Fp: is a trait for generic finite field arithmetic over GF(p)
//! - Fp2: a supertrait of Fp for the finite field GF(p^2) with modulus x^2 + 1

pub mod fp;
pub mod fp2;

pub use fp::Fp;
pub use fp2::Fp2;