mirror of
https://github.com/arnaucube/ark-curves-cherry-picked.git
synced 2026-01-09 23:41:30 +01:00
8 lines
257 B
Rust
8 lines
257 B
Rust
use ark_ff::fields::{Fp256, MontBackend, MontConfig};
|
|
|
|
#[derive(MontConfig)]
|
|
#[modulus = "28948022309329048855892746252171976963363056481941560715954676764349967630337"]
|
|
#[generator = "5"]
|
|
pub struct FqConfig;
|
|
pub type Fq = Fp256<MontBackend<FqConfig, 4>>;
|