Struct Degree4ExtensionField

Source
pub struct Degree4ExtensionField;

Implementations§

Trait Implementations§

Source§

impl Clone for Degree4ExtensionField

Source§

fn clone(&self) -> Degree4ExtensionField

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for Degree4ExtensionField

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl HasCircleParams<Degree4ExtensionField> for Degree4ExtensionField

Source§

const ORDER: u128 = 21_267_647_892_944_572_736_998_860_269_687_930_880u128

ORDER = (2^31 - 1)^4 - 1

Source§

const CIRCLE_GENERATOR_X: Self::FE

Coordinate x of the generator of the circle group.
Source§

const CIRCLE_GENERATOR_Y: Self::FE

Coordinate y of the generator of the circle group.
Source§

type FE = FieldElement<Degree4ExtensionField>

Source§

impl IsField for Degree4ExtensionField

Source§

type BaseType = [FieldElement<Degree2ExtensionField>; 2]

The underlying base type for representing elements from the field.
Source§

fn add(a: &Self::BaseType, b: &Self::BaseType) -> Self::BaseType

Returns the sum of a and b.
Source§

fn sub(a: &Self::BaseType, b: &Self::BaseType) -> Self::BaseType

Returns the subtraction of a and b.
Source§

fn neg(a: &Self::BaseType) -> Self::BaseType

Returns the additive inverse of a.
Source§

fn mul(a: &Self::BaseType, b: &Self::BaseType) -> Self::BaseType

Returns the multiplication of a and b.
Source§

fn square(a: &Self::BaseType) -> Self::BaseType

Returns the multiplication of a and a.
Source§

fn inv(a: &Self::BaseType) -> Result<Self::BaseType, FieldError>

Returns the multiplicative inverse of a.
Source§

fn div( a: &Self::BaseType, b: &Self::BaseType, ) -> Result<Self::BaseType, FieldError>

Returns the division of a and b.
Source§

fn eq(a: &Self::BaseType, b: &Self::BaseType) -> bool

Returns a boolean indicating whether a and b are equal or not.
Source§

fn zero() -> Self::BaseType

Returns the additive neutral element.
Source§

fn one() -> Self::BaseType

Returns the multiplicative neutral element.
Source§

fn from_u64(x: u64) -> Self::BaseType

Returns the element x * 1 where 1 is the multiplicative neutral element.
Source§

fn from_base_type(x: Self::BaseType) -> Self::BaseType

Takes as input an element of BaseType and returns the internal representation of that element in the field.
Source§

fn double(a: &Self::BaseType) -> Self::BaseType

Returns the double of a.
Source§

fn pow<T>(a: &Self::BaseType, exponent: T) -> Self::BaseType

Source§

impl IsSubFieldOf<Degree4ExtensionField> for Mersenne31Field

Auto Trait Implementations§

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> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. 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<F, Q> IsSubFieldOf<CubicExtensionField<F, Q>> for F
where F: IsField, Q: Clone + Debug + HasCubicNonResidue<F>,

Source§

impl<F> IsSubFieldOf<F> for F
where F: IsField,

Source§

fn mul( a: &<F as IsField>::BaseType, b: &<F as IsField>::BaseType, ) -> <F as IsField>::BaseType

Source§

fn add( a: &<F as IsField>::BaseType, b: &<F as IsField>::BaseType, ) -> <F as IsField>::BaseType

Source§

fn sub( a: &<F as IsField>::BaseType, b: &<F as IsField>::BaseType, ) -> <F as IsField>::BaseType

Source§

fn div( a: &<F as IsField>::BaseType, b: &<F as IsField>::BaseType, ) -> Result<<F as IsField>::BaseType, FieldError>

Source§

fn embed(a: <F as IsField>::BaseType) -> <F as IsField>::BaseType

Source§

fn to_subfield_vec(b: <F as IsField>::BaseType) -> Vec<<F as IsField>::BaseType>

Source§

impl<F, Q> IsSubFieldOf<QuadraticExtensionField<F, Q>> for F

Source§

impl<T> Pointable for T

Source§

const ALIGN: usize

The alignment of pointer.
Source§

type Init = T

The type for initializers.
Source§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
Source§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
Source§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
Source§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
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.