p3_bn254/
lib.rs

1//! The scalar field of the BN254 curve, defined as `F_P` where `P = 21888242871839275222246405745257275088548364400416034343698204186575808495617`.
2#![no_std]
3
4extern crate alloc;
5
6mod bn254;
7mod helpers;
8mod poseidon2;
9
10pub use bn254::*;
11pub use poseidon2::Poseidon2Bn254;