You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

9 lines
468 B

  1. use ark_ff::fields::{Fp768, MontBackend, MontConfig};
  2. #[derive(MontConfig)]
  3. #[modulus = "41898490967918953402344214791240637128170709919953949071783502921025352812571106773058893763790338921418070971888458477323173057491593855069696241854796396165721416325350064441470418137846398469611935719059908164220784476160001"]
  4. #[generator = "17"]
  5. #[small_subgroup_base = "5"]
  6. #[small_subgroup_power = "2"]
  7. pub struct FrConfig;
  8. pub type Fr = Fp768<MontBackend<FrConfig, 12>>;