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