#algebra #finite #finite-fields #wasm #cryptography #no-std

no-std zkp-primefield

A 251-bit prime field suitable for FFTs

3 unstable releases

0.2.0 Oct 19, 2020
0.1.1 Oct 7, 2019
0.1.0 Oct 7, 2019

#726 in Math

Download history 2/week @ 2024-02-12 9/week @ 2024-02-19 25/week @ 2024-02-26 19/week @ 2024-03-04 21/week @ 2024-03-11 13/week @ 2024-03-18 18/week @ 2024-03-25 72/week @ 2024-04-01 9/week @ 2024-04-08 4/week @ 2024-04-15

103 downloads per month
Used in 5 crates (4 directly)

Apache-2.0

275KB
6K SLoC

OpenZKP Prime Field

Crates.io CircleCI Codecov

A 251-bit prime field suitable for FFTs.

Goals

  • Perfomance optimized for Native and WebAssembly
  • Generality
  • Later: Constant-time operations.
  • Prefer const fn over procedural macros.

For optimization, there are a few different scenarios:

Note: The modulus is always assumed to be 256bit or less.

  • Programmer time known fields. The programmer can supply hand tuned optimized implementations of various algorithms. Ideally well performing defaults are provided.
  • Compiler time known fields. The compiler can compute constants, for example for Montgomery representation. The field parameters should be inlined.
  • Statically runtime known fields. Modulus is not known during compilation (but it's size is). Element membership of a particular field is known at compile time. The field parameters should statically allocated and the pointers inlined.
  • Dynamically runtime known fields. Modulus is not known during compilation (but its size is). Element membership of a particular field is not known at compile time. The field element should carry a pointer to the field parameters.

Benchmark

Checkout master branch:

cargo bench --bench benchmark -- --save-baseline master
cargo bench --bench benchmark -- --baseline master
open target/criterion/report/index.html

Benchmarking using Mac OS' instrumentation. For this we need the cargo-instruments plugin for Cargo.

cargo install cargo-instruments

You can then run tests under profiling. It is recommended to filter for a specific test.

cargo instruments --release --bench benchmark --open [test name]
instruments -t "Time Profiler"  target/release/deps/benchmark-c7230d017f7da1a3 --bench cache

References and benchmarks

References

Dependencies

~2.4–4MB
~79K SLoC