#prime-field #finite-fields #zeroize #derive #feature #interfacing

ff-zeroize

Library for building and interfacing with finite fields

3 releases

0.6.3 Mar 26, 2020
0.6.2 Mar 26, 2020
0.6.1 Mar 26, 2020

#9 in #prime-field

Download history 1619/week @ 2023-11-23 1270/week @ 2023-11-30 1403/week @ 2023-12-07 910/week @ 2023-12-14 534/week @ 2023-12-21 512/week @ 2023-12-28 940/week @ 2024-01-04 1041/week @ 2024-01-11 864/week @ 2024-01-18 938/week @ 2024-01-25 1288/week @ 2024-02-01 1016/week @ 2024-02-08 1719/week @ 2024-02-15 1231/week @ 2024-02-22 1575/week @ 2024-02-29 1656/week @ 2024-03-07

6,446 downloads per month
Used in 36 crates (9 directly)

MIT/Apache

16KB
238 lines

ff-zeroize

  • ff-zeroize is a temporary crate that enables zeroize features for ffcrate
  • ff is a finite field library written in pure Rust, with no unsafe{} code.

Disclaimers

  • This library does not provide constant-time guarantees.

Usage

Add the ff crate to your Cargo.toml:

[dependencies]
ff_zeroize = "0.6.1"

The ff crate contains Field, PrimeField, PrimeFieldRepr and SqrtField traits. See the documentation for more.

#![derive(PrimeField)]

If you need an implementation of a prime field, this library also provides a procedural macro that will expand into an efficient implementation of a prime field when supplied with the modulus. PrimeFieldGenerator must be an element of Fp of p-1 order, that is also quadratic nonresidue.

First, enable the derive crate feature:

[dependencies]
ff_zeroize = { version = "0.6.1", features = ["derive"] }

And then use the macro like so:

extern crate rand;
#[macro_use]
extern crate ff;

#[derive(PrimeField)]
#[PrimeFieldModulus = "52435875175126190479447740508185965837690552500527637822603658699938581184513"]
#[PrimeFieldGenerator = "7"]
struct Fp(FpRepr);

And that's it! Fp now implements Field and PrimeField. Fp will also implement SqrtField if supported. The library implements FpRepr itself and derives PrimeFieldRepr for it.

License

Licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

Dependencies

~0.5–1.1MB
~25K SLoC