ark_bn254/fields/
fr.rs

1use ark_ff::fields::{Fp256, MontBackend, MontConfig};
2
3#[derive(MontConfig)]
4#[modulus = "21888242871839275222246405745257275088548364400416034343698204186575808495617"]
5#[generator = "5"]
6#[small_subgroup_base = "3"]
7#[small_subgroup_power = "2"]
8pub struct FrConfig;
9pub type Fr = Fp256<MontBackend<FrConfig, 4>>;