ark_ff/
lib.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
#![cfg_attr(not(feature = "std"), no_std)]
#![warn(
    unused,
    future_incompatible,
    nonstandard_style,
    rust_2018_idioms,
    rust_2021_compatibility
)]
#![allow(clippy::op_ref, clippy::suspicious_op_assign_impl)]
#![deny(unsafe_code)]
#![doc = include_str!("../README.md")]

#[macro_use]
extern crate ark_std;

#[macro_use]
extern crate educe;

#[macro_use]
pub mod biginteger;
pub use biginteger::{
    signed_mod_reduction, BigInt, BigInteger, BigInteger128, BigInteger256, BigInteger320,
    BigInteger384, BigInteger448, BigInteger64, BigInteger768, BigInteger832,
};

#[macro_use]
pub mod fields;
pub use self::fields::*;

pub(crate) mod bits;
pub use bits::*;

pub(crate) mod const_helpers;

pub use ark_std::UniformRand;

mod to_field_vec;
pub use to_field_vec::ToConstraintField;

#[doc(hidden)]
pub use ark_ff_asm::*;
#[doc(hidden)]
pub use ark_std::vec;

pub mod prelude {
    pub use crate::{
        biginteger::BigInteger,
        fields::{Field, PrimeField},
        One, Zero,
    };
    pub use ark_std::UniformRand;
}