Crates.io | ffnt |
lib.rs | ffnt |
version | 0.8.0 |
source | src |
created_at | 2024-01-26 13:01:32.495377 |
updated_at | 2024-08-16 15:08:26.363802 |
description | Finite fields for number theory |
homepage | |
repository | |
max_upload_size | |
id | 1115514 |
size | 102,133 |
This crate provides prime fields with a characteristic that fits inside a 64 bit (or 32 bit) integer.
It is mostly intended for number-theoretical applications. All algorithms are taken from the NTL library, but for performance and safety reasons the field characteristic is set at compile time.
This crate is not suitable for applications in cryptography
Add this to your Cargo.toml:
[dependencies]
ffnt = "0.8"
use ffnt::Z64; // or Z32 if the characteristic fits inside 32 bits
// the field characteristic
const P: u64 = 113;
// sum up all elements of the field
let sum = (1..P).map(Z64::<P>::from)
.reduce(|acc, t| acc + t)
.unwrap();
// check that the elements sum to 0
// if `num-traits` is enabled it is even better to use `sum.is_zero()`
assert_eq!(sum, Z64::<P>::from(0));
For more examples see the examples directory.
rand
: support for random number generationnum-traits
: numeric traitsserde
: serialisation and deserialisationLicense: GPL-3.0-or-later