ark_test_curves

Struct Fp12ConfigWrapper

Source
pub struct Fp12ConfigWrapper<P>(/* private fields */)
where
    P: Fp12Config;

Trait Implementations§

Source§

impl<P> QuadExtConfig for Fp12ConfigWrapper<P>
where P: Fp12Config,

Source§

const DEGREE_OVER_BASE_PRIME_FIELD: usize = 12usize

The degree of the extension over the base prime field.
Source§

const NONRESIDUE: <Fp12ConfigWrapper<P> as QuadExtConfig>::BaseField = P::NONRESIDUE

The quadratic non-residue used to construct the extension.
Source§

const FROBENIUS_COEFF_C1: &'static [<Fp12ConfigWrapper<P> as QuadExtConfig>::FrobCoeff] = P::FROBENIUS_COEFF_FP12_C1

Coefficients for the Frobenius automorphism.
Source§

type BasePrimeField = <<<P as Fp12Config>::Fp6Config as Fp6Config>::Fp2Config as Fp2Config>::Fp

The prime field that this quadratic extension is eventually an extension of.
Source§

type BaseField = CubicExtField<Fp6ConfigWrapper<<P as Fp12Config>::Fp6Config>>

The base field that this field is a quadratic extension of. Read more
Source§

type FrobCoeff = QuadExtField<Fp2ConfigWrapper<<<P as Fp12Config>::Fp6Config as Fp6Config>::Fp2Config>>

The type of the coefficients for an efficient implementation of the Frobenius endomorphism.
Source§

fn mul_base_field_by_nonresidue_in_place( fe: &mut <Fp12ConfigWrapper<P> as QuadExtConfig>::BaseField, ) -> &mut <Fp12ConfigWrapper<P> as QuadExtConfig>::BaseField

A specializable method for multiplying an element of the base field by the quadratic non-residue. This is used in Karatsuba multiplication and in complex squaring.
Source§

fn mul_base_field_by_frob_coeff( fe: &mut <Fp12ConfigWrapper<P> as QuadExtConfig>::BaseField, power: usize, )

A specializable method for multiplying an element of the base field by the appropriate Frobenius coefficient.
Source§

fn mul_base_field_by_nonresidue_and_add( y: &mut Self::BaseField, x: &Self::BaseField, )

A specializable method for setting y = x + NONRESIDUE * y. This allows for optimizations when the non-residue is canonically negative in the field.
Source§

fn mul_base_field_by_nonresidue_plus_one_and_add( y: &mut Self::BaseField, x: &Self::BaseField, )

A specializable method for computing x + mul_base_field_by_nonresidue(y) + y This allows for optimizations when the non-residue is not -1.
Source§

fn sub_and_mul_base_field_by_nonresidue( y: &mut Self::BaseField, x: &Self::BaseField, )

A specializable method for computing x - mul_base_field_by_nonresidue(y) This allows for optimizations when the non-residue is canonically negative in the field.

Auto Trait Implementations§

§

impl<P> Freeze for Fp12ConfigWrapper<P>

§

impl<P> RefUnwindSafe for Fp12ConfigWrapper<P>
where P: RefUnwindSafe,

§

impl<P> Send for Fp12ConfigWrapper<P>

§

impl<P> Sync for Fp12ConfigWrapper<P>

§

impl<P> Unpin for Fp12ConfigWrapper<P>
where P: Unpin,

§

impl<P> UnwindSafe for Fp12ConfigWrapper<P>
where P: UnwindSafe,

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V