Struct snarkvm_wasm::fp6_2over3::Fp6 [−][src]
pub struct Fp6<P> where
P: Fp6Parameters, { pub c0: Fp3<<P as Fp6Parameters>::Fp3Params>, pub c1: Fp3<<P as Fp6Parameters>::Fp3Params>, // some fields omitted }
Fields
c0: Fp3<<P as Fp6Parameters>::Fp3Params>c1: Fp3<<P as Fp6Parameters>::Fp3Params>Implementations
impl<P> Fp6<P> where
P: Fp6Parameters, [src]
impl<P> Fp6<P> where
P: Fp6Parameters, [src]pub fn new(
c0: Fp3<<P as Fp6Parameters>::Fp3Params>,
c1: Fp3<<P as Fp6Parameters>::Fp3Params>
) -> Fp6<P>[src]
c0: Fp3<<P as Fp6Parameters>::Fp3Params>,
c1: Fp3<<P as Fp6Parameters>::Fp3Params>
) -> Fp6<P>
pub fn conjugate(&mut self)[src]
pub fn mul_by_034(
&mut self,
c0: &<<P as Fp6Parameters>::Fp3Params as Fp3Parameters>::Fp,
c3: &<<P as Fp6Parameters>::Fp3Params as Fp3Parameters>::Fp,
c4: &<<P as Fp6Parameters>::Fp3Params as Fp3Parameters>::Fp
)[src]
&mut self,
c0: &<<P as Fp6Parameters>::Fp3Params as Fp3Parameters>::Fp,
c3: &<<P as Fp6Parameters>::Fp3Params as Fp3Parameters>::Fp,
c4: &<<P as Fp6Parameters>::Fp3Params as Fp3Parameters>::Fp
)
pub fn mul_by_014(
&mut self,
c0: &<<P as Fp6Parameters>::Fp3Params as Fp3Parameters>::Fp,
c1: &<<P as Fp6Parameters>::Fp3Params as Fp3Parameters>::Fp,
c4: &<<P as Fp6Parameters>::Fp3Params as Fp3Parameters>::Fp
)[src]
&mut self,
c0: &<<P as Fp6Parameters>::Fp3Params as Fp3Parameters>::Fp,
c1: &<<P as Fp6Parameters>::Fp3Params as Fp3Parameters>::Fp,
c4: &<<P as Fp6Parameters>::Fp3Params as Fp3Parameters>::Fp
)
pub fn mul_by_nonresidue(
value: &Fp3<<P as Fp6Parameters>::Fp3Params>
) -> Fp3<<P as Fp6Parameters>::Fp3Params>[src]
pub fn mul_by_nonresidue(
value: &Fp3<<P as Fp6Parameters>::Fp3Params>
) -> Fp3<<P as Fp6Parameters>::Fp3Params>[src]Multiply by quadratic nonresidue v.
pub fn unitary_inverse(&self) -> Fp6<P>[src]
pub fn cyclotomic_exp<B>(&self, exponent: &B) -> Fp6<P> where
B: BigInteger, [src]
B: BigInteger,
Trait Implementations
impl<'a, P> Add<&'a Fp6<P>> for Fp6<P> where
P: Fp6Parameters, [src]
impl<'a, P> Add<&'a Fp6<P>> for Fp6<P> where
P: Fp6Parameters, [src]impl<'a, P> AddAssign<&'a Fp6<P>> for Fp6<P> where
P: Fp6Parameters, [src]
impl<'a, P> AddAssign<&'a Fp6<P>> for Fp6<P> where
P: Fp6Parameters, [src]pub fn add_assign(&mut self, other: &Fp6<P>)[src]
pub fn add_assign(&mut self, other: &Fp6<P>)[src]Performs the += operation. Read more
impl<P> CanonicalDeserialize for Fp6<P> where
P: Fp6Parameters, [src]
impl<P> CanonicalDeserialize for Fp6<P> where
P: Fp6Parameters, [src]pub fn deserialize<R>(reader: &mut R) -> Result<Fp6<P>, SerializationError> where
R: Read, [src]
pub fn deserialize<R>(reader: &mut R) -> Result<Fp6<P>, SerializationError> where
R: Read, [src]Reads Self from reader.
fn deserialize_uncompressed<R>(
reader: &mut R
) -> Result<Self, SerializationError> where
R: Read, [src]
fn deserialize_uncompressed<R>(
reader: &mut R
) -> Result<Self, SerializationError> where
R: Read, [src]Reads Self from reader without compression.
impl<P> CanonicalDeserializeWithFlags for Fp6<P> where
P: Fp6Parameters, [src]
impl<P> CanonicalDeserializeWithFlags for Fp6<P> where
P: Fp6Parameters, [src]impl<P> CanonicalSerialize for Fp6<P> where
P: Fp6Parameters, [src]
impl<P> CanonicalSerialize for Fp6<P> where
P: Fp6Parameters, [src]pub fn serialize<W>(&self, writer: &mut W) -> Result<(), SerializationError> where
W: Write, [src]
pub fn serialize<W>(&self, writer: &mut W) -> Result<(), SerializationError> where
W: Write, [src]Serializes self into writer.
pub fn serialized_size(&self) -> usize[src]
fn serialize_uncompressed<W>(
&self,
writer: &mut W
) -> Result<(), SerializationError> where
W: Write, [src]
fn serialize_uncompressed<W>(
&self,
writer: &mut W
) -> Result<(), SerializationError> where
W: Write, [src]Serializes self into writer without compression.
fn uncompressed_size(&self) -> usize[src]
impl<P> CanonicalSerializeWithFlags for Fp6<P> where
P: Fp6Parameters, [src]
impl<P> CanonicalSerializeWithFlags for Fp6<P> where
P: Fp6Parameters, [src]pub fn serialize_with_flags<W, F>(
&self,
writer: &mut W,
flags: F
) -> Result<(), SerializationError> where
F: Flags,
W: Write, [src]
pub fn serialize_with_flags<W, F>(
&self,
writer: &mut W,
flags: F
) -> Result<(), SerializationError> where
F: Flags,
W: Write, [src]Serializes self and flags into writer.
impl<P> Clone for Fp6<P> where
P: Fp6Parameters, [src]
impl<P> Clone for Fp6<P> where
P: Fp6Parameters, [src]impl<P> ConstantSerializedSize for Fp6<P> where
P: Fp6Parameters, [src]
impl<P> ConstantSerializedSize for Fp6<P> where
P: Fp6Parameters, [src]impl<P> Debug for Fp6<P> where
P: Fp6Parameters, [src]
impl<P> Debug for Fp6<P> where
P: Fp6Parameters, [src]impl<P> Default for Fp6<P> where
P: Fp6Parameters, [src]
impl<P> Default for Fp6<P> where
P: Fp6Parameters, [src]impl<'de, P> Deserialize<'de> for Fp6<P> where
P: Fp6Parameters, [src]
impl<'de, P> Deserialize<'de> for Fp6<P> where
P: Fp6Parameters, [src]pub fn deserialize<__D>(
__deserializer: __D
) -> Result<Fp6<P>, <__D as Deserializer<'de>>::Error> where
__D: Deserializer<'de>, [src]
pub fn deserialize<__D>(
__deserializer: __D
) -> Result<Fp6<P>, <__D as Deserializer<'de>>::Error> where
__D: Deserializer<'de>, [src]Deserialize this value from the given Serde deserializer. Read more
impl<P> Display for Fp6<P> where
P: Fp6Parameters, [src]
impl<P> Display for Fp6<P> where
P: Fp6Parameters, [src]impl<'a, P> Div<&'a Fp6<P>> for Fp6<P> where
P: Fp6Parameters, [src]
impl<'a, P> Div<&'a Fp6<P>> for Fp6<P> where
P: Fp6Parameters, [src]impl<'a, P> DivAssign<&'a Fp6<P>> for Fp6<P> where
P: Fp6Parameters, [src]
impl<'a, P> DivAssign<&'a Fp6<P>> for Fp6<P> where
P: Fp6Parameters, [src]pub fn div_assign(&mut self, other: &Fp6<P>)[src]
pub fn div_assign(&mut self, other: &Fp6<P>)[src]Performs the /= operation. Read more
impl<P> Field for Fp6<P> where
P: Fp6Parameters, [src]
impl<P> Field for Fp6<P> where
P: Fp6Parameters, [src]pub fn characteristic<'a>() -> &'a [u64]ⓘ[src]
pub fn characteristic<'a>() -> &'a [u64]ⓘ[src]Returns the characteristic of the field.
pub fn double_in_place(&mut self) -> &mut Fp6<P>[src]
pub fn double_in_place(&mut self) -> &mut Fp6<P>[src]Doubles self in place.
pub fn from_random_bytes_with_flags(bytes: &[u8]) -> Option<(Fp6<P>, u8)>[src]
pub fn from_random_bytes_with_flags(bytes: &[u8]) -> Option<(Fp6<P>, u8)>[src]Returns a field element with an extra sign bit used for group parsing if the set of bytes forms a valid field element, otherwise returns None. This function is primarily intended for sampling random field elements from a hash-function or RNG output. Read more
pub fn from_random_bytes(bytes: &[u8]) -> Option<Fp6<P>>[src]
pub fn from_random_bytes(bytes: &[u8]) -> Option<Fp6<P>>[src]Returns a field element if the set of bytes forms a valid field element, otherwise returns None. This function is primarily intended for sampling random field elements from a hash-function or RNG output. Read more
pub fn square_in_place(&mut self) -> &mut Fp6<P>[src]
pub fn square_in_place(&mut self) -> &mut Fp6<P>[src]Squares self in place.
pub fn inverse(&self) -> Option<Fp6<P>>[src]
pub fn inverse(&self) -> Option<Fp6<P>>[src]Computes the multiplicative inverse of self if self is nonzero.
pub fn inverse_in_place(&mut self) -> Option<&mut Fp6<P>>[src]
pub fn frobenius_map(&mut self, power: usize)[src]
pub fn frobenius_map(&mut self, power: usize)[src]Exponentiates this element by a power of the base prime modulus via the Frobenius automorphism. Read more
impl<P> From<u128> for Fp6<P> where
P: Fp6Parameters, [src]
impl<P> From<u128> for Fp6<P> where
P: Fp6Parameters, [src]impl<P> From<u16> for Fp6<P> where
P: Fp6Parameters, [src]
impl<P> From<u16> for Fp6<P> where
P: Fp6Parameters, [src]impl<P> From<u32> for Fp6<P> where
P: Fp6Parameters, [src]
impl<P> From<u32> for Fp6<P> where
P: Fp6Parameters, [src]impl<P> From<u64> for Fp6<P> where
P: Fp6Parameters, [src]
impl<P> From<u64> for Fp6<P> where
P: Fp6Parameters, [src]impl<P> From<u8> for Fp6<P> where
P: Fp6Parameters, [src]
impl<P> From<u8> for Fp6<P> where
P: Fp6Parameters, [src]impl<P> FromBytes for Fp6<P> where
P: Fp6Parameters, [src]
impl<P> FromBytes for Fp6<P> where
P: Fp6Parameters, [src]impl<P> Hash for Fp6<P> where
P: Fp6Parameters, [src]
impl<P> Hash for Fp6<P> where
P: Fp6Parameters, [src]impl<'a, P> Mul<&'a Fp6<P>> for Fp6<P> where
P: Fp6Parameters, [src]
impl<'a, P> Mul<&'a Fp6<P>> for Fp6<P> where
P: Fp6Parameters, [src]impl<'a, P> MulAssign<&'a Fp6<P>> for Fp6<P> where
P: Fp6Parameters, [src]
impl<'a, P> MulAssign<&'a Fp6<P>> for Fp6<P> where
P: Fp6Parameters, [src]pub fn mul_assign(&mut self, other: &Fp6<P>)[src]
pub fn mul_assign(&mut self, other: &Fp6<P>)[src]Performs the *= operation. Read more
impl<P> Neg for Fp6<P> where
P: Fp6Parameters, [src]
impl<P> Neg for Fp6<P> where
P: Fp6Parameters, [src]impl<P> One for Fp6<P> where
P: Fp6Parameters, [src]
impl<P> One for Fp6<P> where
P: Fp6Parameters, [src]impl<P> Ord for Fp6<P> where
P: Fp6Parameters, [src]
impl<P> Ord for Fp6<P> where
P: Fp6Parameters, [src]Fp6 elements are ordered lexicographically.
impl<P> PartialEq<Fp6<P>> for Fp6<P> where
P: Fp6Parameters, [src]
impl<P> PartialEq<Fp6<P>> for Fp6<P> where
P: Fp6Parameters, [src]impl<P> PartialOrd<Fp6<P>> for Fp6<P> where
P: Fp6Parameters, [src]
impl<P> PartialOrd<Fp6<P>> for Fp6<P> where
P: Fp6Parameters, [src]pub fn partial_cmp(&self, other: &Fp6<P>) -> Option<Ordering>[src]
pub fn partial_cmp(&self, other: &Fp6<P>) -> Option<Ordering>[src]This method returns an ordering between self and other values if one exists. Read more
#[must_use]fn lt(&self, other: &Rhs) -> bool1.0.0[src]
#[must_use]fn lt(&self, other: &Rhs) -> bool1.0.0[src]This method tests less than (for self and other) and is used by the < operator. Read more
#[must_use]fn le(&self, other: &Rhs) -> bool1.0.0[src]
#[must_use]fn le(&self, other: &Rhs) -> bool1.0.0[src]This method tests less than or equal to (for self and other) and is used by the <=
operator. Read more
impl<P> Serialize for Fp6<P> where
P: Fp6Parameters, [src]
impl<P> Serialize for Fp6<P> where
P: Fp6Parameters, [src]pub fn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error> where
__S: Serializer, [src]
pub fn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error> where
__S: Serializer, [src]Serialize this value into the given Serde serializer. Read more
impl<'a, P> Sub<&'a Fp6<P>> for Fp6<P> where
P: Fp6Parameters, [src]
impl<'a, P> Sub<&'a Fp6<P>> for Fp6<P> where
P: Fp6Parameters, [src]impl<'a, P> SubAssign<&'a Fp6<P>> for Fp6<P> where
P: Fp6Parameters, [src]
impl<'a, P> SubAssign<&'a Fp6<P>> for Fp6<P> where
P: Fp6Parameters, [src]pub fn sub_assign(&mut self, other: &Fp6<P>)[src]
pub fn sub_assign(&mut self, other: &Fp6<P>)[src]Performs the -= operation. Read more
impl<P> ToBytes for Fp6<P> where
P: Fp6Parameters, [src]
impl<P> ToBytes for Fp6<P> where
P: Fp6Parameters, [src]impl<P> Zero for Fp6<P> where
P: Fp6Parameters, [src]
impl<P> Zero for Fp6<P> where
P: Fp6Parameters, [src]impl<P> Copy for Fp6<P> where
P: Fp6Parameters, [src]
P: Fp6Parameters,
impl<P> Eq for Fp6<P> where
P: Fp6Parameters, [src]
P: Fp6Parameters,
Auto Trait Implementations
impl<P> RefUnwindSafe for Fp6<P> where
P: RefUnwindSafe,
<<P as Fp6Parameters>::Fp3Params as Fp3Parameters>::Fp: RefUnwindSafe,
<P as Fp6Parameters>::Fp3Params: RefUnwindSafe,
P: RefUnwindSafe,
<<P as Fp6Parameters>::Fp3Params as Fp3Parameters>::Fp: RefUnwindSafe,
<P as Fp6Parameters>::Fp3Params: RefUnwindSafe,
impl<P> Send for Fp6<P>
impl<P> Sync for Fp6<P>
impl<P> Unpin for Fp6<P> where
P: Unpin,
<<P as Fp6Parameters>::Fp3Params as Fp3Parameters>::Fp: Unpin,
<P as Fp6Parameters>::Fp3Params: Unpin,
P: Unpin,
<<P as Fp6Parameters>::Fp3Params as Fp3Parameters>::Fp: Unpin,
<P as Fp6Parameters>::Fp3Params: Unpin,
impl<P> UnwindSafe for Fp6<P> where
P: UnwindSafe,
<<P as Fp6Parameters>::Fp3Params as Fp3Parameters>::Fp: UnwindSafe,
<P as Fp6Parameters>::Fp3Params: UnwindSafe,
P: UnwindSafe,
<<P as Fp6Parameters>::Fp3Params as Fp3Parameters>::Fp: UnwindSafe,
<P as Fp6Parameters>::Fp3Params: UnwindSafe,
Blanket Implementations
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]pub fn borrow_mut(&mut self) -> &mut T[src]
pub fn borrow_mut(&mut self) -> &mut T[src]Mutably borrows from an owned value. Read more
impl<Q, K> Equivalent<K> for Q where
K: Borrow<Q> + ?Sized,
Q: Eq + ?Sized, [src]
impl<Q, K> Equivalent<K> for Q where
K: Borrow<Q> + ?Sized,
Q: Eq + ?Sized, [src]pub fn equivalent(&self, key: &K) -> bool[src]
pub fn equivalent(&self, key: &K) -> bool[src]Compare self to key and return true if they are equal.
impl<T> Pointable for T
impl<T> Pointable for Timpl<T> Same<T> for T
impl<T> Same<T> for Ttype Output = T
type Output = TShould always be Self
impl<T> ToOwned for T where
T: Clone, [src]
impl<T> ToOwned for T where
T: Clone, [src]type Owned = T
type Owned = TThe resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
pub fn to_owned(&self) -> T[src]Creates owned data from borrowed data, usually by cloning. Read more
pub fn clone_into(&self, target: &mut T)[src]
pub fn clone_into(&self, target: &mut T)[src]🔬 This is a nightly-only experimental API. (toowned_clone_into)
recently added
Uses borrowed data to replace owned data, usually by cloning. Read more
impl<T> UniformRand for T where
Standard: Distribution<T>, [src]
impl<T> UniformRand for T where
Standard: Distribution<T>, [src]impl<V, T> VZip<V> for T where
V: MultiLane<T>,
impl<V, T> VZip<V> for T where
V: MultiLane<T>, pub fn vzip(self) -> V
impl<T> DeserializeOwned for T where
T: for<'de> Deserialize<'de>, [src]
T: for<'de> Deserialize<'de>,