Trait ark_ff::fields::models::fp6_2over3::Fp6Parameters[][src]

pub trait Fp6Parameters: 'static + Send + Sync {
    type Fp3Params: Fp3Parameters;

    const NONRESIDUE: Fp3<Self::Fp3Params>;
    const FROBENIUS_COEFF_FP6_C1: &'static [<Self::Fp3Params as Fp3Parameters>::Fp];
    fn mul_fp3_by_nonresidue(fe: &Fp3<Self::Fp3Params>) -> Fp3<Self::Fp3Params> { ... }
}

Associated Types

Associated Constants

Coefficients for the Frobenius automorphism.

Provided methods

Implementors