halo2_ecc/
lib.rs

1#![allow(clippy::too_many_arguments)]
2#![allow(clippy::op_ref)]
3#![allow(clippy::type_complexity)]
4
5pub mod bigint;
6pub mod ecc;
7pub mod fields;
8
9pub mod bn254;
10pub mod secp256k1;
11
12pub use halo2_base;
13pub(crate) use halo2_base::halo2_proofs;
14use halo2_proofs::halo2curves;
15use halo2curves::ff;
16use halo2curves::group;