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