zkhash/fields/
vesta.rs

1use ark_ff::fields::{Fp256, MontBackend, MontConfig};
2use std::convert::TryInto;
3
4#[derive(MontConfig)]
5#[modulus = "28948022309329048855892746252171976963363056481941647379679742748393362948097"]
6#[generator = "5"]
7pub struct FqConfig;
8pub type FpVesta = Fp256<MontBackend<FqConfig, 4>>;