Files
ark-curves-cherry-picked/bn254/src/fields/fr.rs
2022-03-07 13:12:03 -08:00

8 lines
257 B
Rust

use ark_ff::fields::{Fp256, MontBackend, MontConfig};
#[derive(MontConfig)]
#[modulus = "21888242871839275222246405745257275088548364400416034343698204186575808495617"]
#[generator = "5"]
pub struct FrConfig;
pub type Fr = Fp256<MontBackend<FrConfig, 4>>;