pub struct CubicExtensionField<T> { /* private fields */ }
Expand description

A general cubic extension field over F with cubic non residue Q::residue()

Trait Implementations§

source§

impl<T: Clone> Clone for CubicExtensionField<T>

source§

fn clone(&self) -> CubicExtensionField<T>

Returns a copy 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<T: Debug> Debug for CubicExtensionField<T>

source§

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

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

impl<Q> IsField for CubicExtensionField<Q>where Q: Clone + Debug + HasCubicNonResidue,

source§

fn add( a: &[FieldElement<Q::BaseField>; 3], b: &[FieldElement<Q::BaseField>; 3] ) -> [FieldElement<Q::BaseField>; 3]

Returns the component wise addition of a and b

source§

fn mul( a: &[FieldElement<Q::BaseField>; 3], b: &[FieldElement<Q::BaseField>; 3] ) -> [FieldElement<Q::BaseField>; 3]

Returns the multiplication of a and b using the following equation: (a0 + a1 * t) * (b0 + b1 * t) = a0 * b0 + a1 * b1 * Q::residue() + (a0 * b1 + a1 * b0) * t where t.pow(2) equals Q::residue().

source§

fn sub( a: &[FieldElement<Q::BaseField>; 3], b: &[FieldElement<Q::BaseField>; 3] ) -> [FieldElement<Q::BaseField>; 3]

Returns the component wise subtraction of a and b

source§

fn neg(a: &[FieldElement<Q::BaseField>; 3]) -> [FieldElement<Q::BaseField>; 3]

Returns the component wise negation of a

source§

fn inv(a: &[FieldElement<Q::BaseField>; 3]) -> [FieldElement<Q::BaseField>; 3]

Returns the multiplicative inverse of a

source§

fn div( a: &[FieldElement<Q::BaseField>; 3], b: &[FieldElement<Q::BaseField>; 3] ) -> [FieldElement<Q::BaseField>; 3]

Returns the division of a and b

source§

fn eq( a: &[FieldElement<Q::BaseField>; 3], b: &[FieldElement<Q::BaseField>; 3] ) -> bool

Returns a boolean indicating whether a and b are equal component wise.

source§

fn zero() -> [FieldElement<Q::BaseField>; 3]

Returns the additive neutral element of the field extension.

source§

fn one() -> [FieldElement<Q::BaseField>; 3]

Returns the multiplicative neutral element of the field extension.

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: [FieldElement<Q::BaseField>; 3] ) -> [FieldElement<Q::BaseField>; 3]

Takes as input an element of BaseType and returns the internal representation of that element in the field. Note: for this case this is simply the identity, because the components already have correct representations.

§

type BaseType = [FieldElement<<Q as HasCubicNonResidue>::BaseField>; 3]

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

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

Returns the multiplication of a and a.
source§

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

source§

impl<T: PartialEq> PartialEq<CubicExtensionField<T>> for CubicExtensionField<T>

source§

fn eq(&self, other: &CubicExtensionField<T>) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl<T: Eq> Eq for CubicExtensionField<T>

source§

impl<T> StructuralEq for CubicExtensionField<T>

source§

impl<T> StructuralPartialEq for CubicExtensionField<T>

Auto Trait Implementations§

§

impl<T> RefUnwindSafe for CubicExtensionField<T>where T: RefUnwindSafe,

§

impl<T> Send for CubicExtensionField<T>where T: Send,

§

impl<T> Sync for CubicExtensionField<T>where T: Sync,

§

impl<T> Unpin for CubicExtensionField<T>where T: Unpin,

§

impl<T> UnwindSafe for CubicExtensionField<T>where T: UnwindSafe,

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere 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 Twhere 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.

§

impl<T> Pointable for T

§

const ALIGN: usize = mem::align_of::<T>()

The alignment of pointer.
§

type Init = T

The type for initializers.
§

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

Initializes a with the given initializer. Read more
§

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

Dereferences the given pointer. Read more
§

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

Mutably dereferences the given pointer. Read more
§

unsafe fn drop(ptr: usize)

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

impl<T> ToOwned for Twhere T: Clone,

§

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 Twhere U: Into<T>,

§

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 Twhere U: TryFrom<T>,

§

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.