[][src]Crate gf

Galois Field

finite field arithmetic

use gf::GF;

let x = GF(123u8);
let y = GF(225u8);
println!("{}", x + y);

Structs

GF

The Golias Field Type.