6 releases (3 breaking)

0.6.1 Jan 24, 2023
0.6.0 Jun 22, 2022
0.5.0 Aug 16, 2021
0.4.0 Nov 23, 2020
0.1.2 Aug 20, 2019

#1751 in Cryptography

28 downloads per month
Used in sharing

MIT license

28KB
660 lines

Galois Field

Galois Field implementation in rust


lib.rs:

Galois Field

finite field arithmetic

use gf::GF;

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

Dependencies

~39KB