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.

7 lines
258 B

  1. use ark_ff::fields::{Fp256, MontBackend, MontConfig};
  2. #[derive(MontConfig)]
  3. #[modulus = "115792089210356248762697446949407573530086143415290314195533631308867097853951"]
  4. #[generator = "2"]
  5. pub struct FqConfig;
  6. pub type Fq = Fp256<MontBackend<FqConfig, 4>>;