ark_test_curves::pairing

Struct PairingOutput

Source
pub struct PairingOutput<P>(pub <P as Pairing>::TargetField)
where
    P: Pairing;
Expand description

Represents the target group of a pairing. This struct is a wrapper around the field that the target group is embedded in.

Tuple Fields§

§0: <P as Pairing>::TargetField

Trait Implementations§

Source§

impl<'a, 'b, P> Add<&'a PairingOutput<P>> for &'b PairingOutput<P>
where P: Pairing,

Source§

type Output = PairingOutput<P>

The resulting type after applying the + operator.
Source§

fn add(self, other: &'a PairingOutput<P>) -> PairingOutput<P>

Performs the + operation. Read more
Source§

impl<'a, P> Add<&'a PairingOutput<P>> for PairingOutput<P>
where P: Pairing,

Source§

type Output = PairingOutput<P>

The resulting type after applying the + operator.
Source§

fn add(self, other: &'a PairingOutput<P>) -> PairingOutput<P>

Performs the + operation. Read more
Source§

impl<'a, 'b, P> Add<&'a mut PairingOutput<P>> for &'b PairingOutput<P>
where P: Pairing,

Source§

type Output = PairingOutput<P>

The resulting type after applying the + operator.
Source§

fn add(self, other: &'a mut PairingOutput<P>) -> PairingOutput<P>

Performs the + operation. Read more
Source§

impl<'a, P> Add<&'a mut PairingOutput<P>> for PairingOutput<P>
where P: Pairing,

Source§

type Output = PairingOutput<P>

The resulting type after applying the + operator.
Source§

fn add(self, other: &'a mut PairingOutput<P>) -> PairingOutput<P>

Performs the + operation. Read more
Source§

impl<'b, P> Add<PairingOutput<P>> for &'b PairingOutput<P>
where P: Pairing,

Source§

type Output = PairingOutput<P>

The resulting type after applying the + operator.
Source§

fn add(self, other: PairingOutput<P>) -> PairingOutput<P>

Performs the + operation. Read more
Source§

impl<P> Add for PairingOutput<P>
where P: Pairing,

Source§

type Output = PairingOutput<P>

The resulting type after applying the + operator.
Source§

fn add(self, other: PairingOutput<P>) -> PairingOutput<P>

Performs the + operation. Read more
Source§

impl<'a, P> AddAssign<&'a PairingOutput<P>> for PairingOutput<P>
where P: Pairing,

Source§

fn add_assign(&mut self, other: &'a PairingOutput<P>)

Performs the += operation. Read more
Source§

impl<'a, P> AddAssign<&'a mut PairingOutput<P>> for PairingOutput<P>
where P: Pairing,

Source§

fn add_assign(&mut self, other: &'a mut PairingOutput<P>)

Performs the += operation. Read more
Source§

impl<P> AddAssign for PairingOutput<P>
where P: Pairing,

Source§

fn add_assign(&mut self, other: PairingOutput<P>)

Performs the += operation. Read more
Source§

impl<P> AdditiveGroup for PairingOutput<P>
where P: Pairing,

Source§

const ZERO: PairingOutput<P> = _

The additive identity of the field.
Source§

type Scalar = <P as Pairing>::ScalarField

Source§

fn double_in_place(&mut self) -> &mut PairingOutput<P>

Doubles self in place.
Source§

fn double(&self) -> Self

Doubles self.
Source§

fn neg_in_place(&mut self) -> &mut Self

Negates self in place.
Source§

impl<P> CanonicalDeserialize for PairingOutput<P>
where P: Pairing,

Source§

fn deserialize_with_mode<R>( reader: R, compress: Compress, validate: Validate, ) -> Result<PairingOutput<P>, SerializationError>
where R: Read,

The general deserialize method that takes in customization flags.
Source§

fn deserialize_compressed<R>(reader: R) -> Result<Self, SerializationError>
where R: Read,

Source§

fn deserialize_compressed_unchecked<R>( reader: R, ) -> Result<Self, SerializationError>
where R: Read,

Source§

fn deserialize_uncompressed<R>(reader: R) -> Result<Self, SerializationError>
where R: Read,

Source§

fn deserialize_uncompressed_unchecked<R>( reader: R, ) -> Result<Self, SerializationError>
where R: Read,

Source§

impl<P> CanonicalSerialize for PairingOutput<P>
where P: Pairing,

Source§

fn serialize_with_mode<W>( &self, writer: W, compress: Compress, ) -> Result<(), SerializationError>
where W: Write,

The general serialize method that takes in customization flags.
Source§

fn serialized_size(&self, compress: Compress) -> usize

Source§

fn serialize_compressed<W>(&self, writer: W) -> Result<(), SerializationError>
where W: Write,

Source§

fn compressed_size(&self) -> usize

Source§

fn serialize_uncompressed<W>(&self, writer: W) -> Result<(), SerializationError>
where W: Write,

Source§

fn uncompressed_size(&self) -> usize

Source§

impl<P> Clone for PairingOutput<P>
where P: Pairing, <P as Pairing>::TargetField: Copy,

Source§

fn clone(&self) -> PairingOutput<P>

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<P> Debug for PairingOutput<P>
where P: Pairing, <P as Pairing>::TargetField: Debug,

Source§

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

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

impl<P> Default for PairingOutput<P>
where P: Pairing,

Source§

fn default() -> PairingOutput<P>

Returns the “default value” for a type. Read more
Source§

impl<P> Display for PairingOutput<P>
where P: Pairing,

Source§

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

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

impl<P> Hash for PairingOutput<P>
where P: Pairing, <P as Pairing>::TargetField: Hash,

Source§

fn hash<H>(&self, state: &mut H)
where H: Hasher,

Feeds this value into the given Hasher. Read more
1.3.0 · Source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
Source§

impl<P, T> Mul<T> for PairingOutput<P>
where P: Pairing, T: Borrow<<P as Pairing>::ScalarField>,

Source§

type Output = PairingOutput<P>

The resulting type after applying the * operator.
Source§

fn mul(self, other: T) -> PairingOutput<P>

Performs the * operation. Read more
Source§

impl<P, T> MulAssign<T> for PairingOutput<P>
where P: Pairing, T: Borrow<<P as Pairing>::ScalarField>,

Source§

fn mul_assign(&mut self, other: T)

Performs the *= operation. Read more
Source§

impl<P> Neg for PairingOutput<P>
where P: Pairing,

Source§

type Output = PairingOutput<P>

The resulting type after applying the - operator.
Source§

fn neg(self) -> PairingOutput<P>

Performs the unary - operation. Read more
Source§

impl<P> Ord for PairingOutput<P>
where P: Pairing, <P as Pairing>::TargetField: Ord, PairingOutput<P>: Eq,

Source§

fn cmp(&self, other: &PairingOutput<P>) -> Ordering

This method returns an Ordering between self and other. Read more
1.21.0 · Source§

fn max(self, other: Self) -> Self
where Self: Sized,

Compares and returns the maximum of two values. Read more
1.21.0 · Source§

fn min(self, other: Self) -> Self
where Self: Sized,

Compares and returns the minimum of two values. Read more
1.50.0 · Source§

fn clamp(self, min: Self, max: Self) -> Self
where Self: Sized,

Restrict a value to a certain interval. Read more
Source§

impl<P> PartialEq for PairingOutput<P>
where P: Pairing, <P as Pairing>::TargetField: PartialEq,

Source§

fn eq(&self, other: &PairingOutput<P>) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

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

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl<P> PartialOrd for PairingOutput<P>
where P: Pairing, <P as Pairing>::TargetField: Ord, PairingOutput<P>: Eq,

Source§

fn partial_cmp(&self, other: &PairingOutput<P>) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0 · Source§

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

Tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · Source§

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

Tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 · Source§

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

Tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · Source§

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

Tests greater than or equal to (for self and other) and is used by the >= operator. Read more
Source§

impl<P> PrimeGroup for PairingOutput<P>
where P: Pairing,

Source§

type ScalarField = <P as Pairing>::ScalarField

The scalar field F_r, where r is the order of this group.
Source§

fn generator() -> PairingOutput<P>

Returns a fixed generator of this group.
Source§

fn mul_bigint(&self, other: impl AsRef<[u64]>) -> PairingOutput<P>

Performs scalar multiplication of this element.
Source§

fn mul_bits_be(&self, other: impl Iterator<Item = bool>) -> PairingOutput<P>

Computes other * self, where other is a big-endian bit representation of some integer.
Source§

impl<P> ScalarMul for PairingOutput<P>
where P: Pairing,

Source§

const NEGATION_IS_CHEAP: bool = <P::TargetField>::INVERSE_IS_FAST

Source§

type MulBase = PairingOutput<P>

Source§

fn batch_convert_to_mul_base( bases: &[PairingOutput<P>], ) -> Vec<<PairingOutput<P> as ScalarMul>::MulBase>

Source§

fn batch_mul(self, v: &[Self::ScalarField]) -> Vec<Self::MulBase>

Compute the vector v[0].G, v[1].G, …, v[n-1].G, given: Read more
Source§

fn batch_mul_with_preprocessing( table: &BatchMulPreprocessing<Self>, v: &[Self::ScalarField], ) -> Vec<Self::MulBase>

Compute the vector v[0].G, v[1].G, …, v[n-1].G, given: Read more
Source§

impl<'a, 'b, P> Sub<&'a PairingOutput<P>> for &'b PairingOutput<P>
where P: Pairing,

Source§

type Output = PairingOutput<P>

The resulting type after applying the - operator.
Source§

fn sub(self, other: &'a PairingOutput<P>) -> PairingOutput<P>

Performs the - operation. Read more
Source§

impl<'a, P> Sub<&'a PairingOutput<P>> for PairingOutput<P>
where P: Pairing,

Source§

type Output = PairingOutput<P>

The resulting type after applying the - operator.
Source§

fn sub(self, other: &'a PairingOutput<P>) -> PairingOutput<P>

Performs the - operation. Read more
Source§

impl<'a, 'b, P> Sub<&'a mut PairingOutput<P>> for &'b PairingOutput<P>
where P: Pairing,

Source§

type Output = PairingOutput<P>

The resulting type after applying the - operator.
Source§

fn sub(self, other: &'a mut PairingOutput<P>) -> PairingOutput<P>

Performs the - operation. Read more
Source§

impl<'a, P> Sub<&'a mut PairingOutput<P>> for PairingOutput<P>
where P: Pairing,

Source§

type Output = PairingOutput<P>

The resulting type after applying the - operator.
Source§

fn sub(self, other: &'a mut PairingOutput<P>) -> PairingOutput<P>

Performs the - operation. Read more
Source§

impl<'b, P> Sub<PairingOutput<P>> for &'b PairingOutput<P>
where P: Pairing,

Source§

type Output = PairingOutput<P>

The resulting type after applying the - operator.
Source§

fn sub(self, other: PairingOutput<P>) -> PairingOutput<P>

Performs the - operation. Read more
Source§

impl<P> Sub for PairingOutput<P>
where P: Pairing,

Source§

type Output = PairingOutput<P>

The resulting type after applying the - operator.
Source§

fn sub(self, other: PairingOutput<P>) -> PairingOutput<P>

Performs the - operation. Read more
Source§

impl<'a, P> SubAssign<&'a PairingOutput<P>> for PairingOutput<P>
where P: Pairing,

Source§

fn sub_assign(&mut self, other: &'a PairingOutput<P>)

Performs the -= operation. Read more
Source§

impl<'a, P> SubAssign<&'a mut PairingOutput<P>> for PairingOutput<P>
where P: Pairing,

Source§

fn sub_assign(&mut self, other: &'a mut PairingOutput<P>)

Performs the -= operation. Read more
Source§

impl<P> SubAssign for PairingOutput<P>
where P: Pairing,

Source§

fn sub_assign(&mut self, other: PairingOutput<P>)

Performs the -= operation. Read more
Source§

impl<'a, P> Sum<&'a PairingOutput<P>> for PairingOutput<P>
where P: Pairing,

Source§

fn sum<I>(iter: I) -> PairingOutput<P>
where I: Iterator<Item = &'a PairingOutput<P>>,

Takes an iterator and generates Self from the elements by “summing up” the items.
Source§

impl<P> Sum for PairingOutput<P>
where P: Pairing,

Source§

fn sum<I>(iter: I) -> PairingOutput<P>
where I: Iterator<Item = PairingOutput<P>>,

Takes an iterator and generates Self from the elements by “summing up” the items.
Source§

impl<P> Valid for PairingOutput<P>
where P: Pairing,

Source§

fn check(&self) -> Result<(), SerializationError>

Source§

fn batch_check<'a>( batch: impl Iterator<Item = &'a Self> + Send, ) -> Result<(), SerializationError>
where Self: 'a,

Source§

impl<P> VariableBaseMSM for PairingOutput<P>
where P: Pairing,

Source§

fn msm_unchecked(bases: &[Self::MulBase], scalars: &[Self::ScalarField]) -> Self

Computes an inner product between the PrimeField elements in scalars and the corresponding group elements in bases. Read more
Source§

fn msm( bases: &[Self::MulBase], scalars: &[Self::ScalarField], ) -> Result<Self, usize>

Performs multi-scalar multiplication. Read more
Source§

fn msm_bigint( bases: &[Self::MulBase], bigints: &[<Self::ScalarField as PrimeField>::BigInt], ) -> Self

Optimized implementation of multi-scalar multiplication.
Source§

fn msm_chunks<I, J>(bases_stream: &J, scalars_stream: &I) -> Self
where I: Iterable + ?Sized, <I as Iterable>::Item: Borrow<Self::ScalarField>, J: Iterable, <J as Iterable>::Item: Borrow<Self::MulBase>,

Streaming multi-scalar multiplication algorithm with hard-coded chunk size.
Source§

impl<P> Zero for PairingOutput<P>
where P: Pairing,

Source§

fn zero() -> PairingOutput<P>

The identity element, or “zero”, of the group is the identity element of the multiplicative group of the underlying field, i.e., P::TargetField::one().

Source§

fn is_zero(&self) -> bool

Returns true if self is equal to the additive identity.
Source§

fn set_zero(&mut self)

Sets self to the additive identity element of Self, 0.
Source§

impl<P> Zeroize for PairingOutput<P>
where P: Pairing,

Source§

fn zeroize(&mut self)

Zero out this object from memory using Rust intrinsics which ensure the zeroization operation is not “optimized away” by the compiler.
Source§

impl<P> Copy for PairingOutput<P>
where P: Pairing, <P as Pairing>::TargetField: Copy,

Source§

impl<P> Eq for PairingOutput<P>
where P: Pairing, <P as Pairing>::TargetField: PartialEq,

Auto Trait Implementations§

§

impl<P> Freeze for PairingOutput<P>
where <P as Pairing>::TargetField: Freeze,

§

impl<P> RefUnwindSafe for PairingOutput<P>

§

impl<P> Send for PairingOutput<P>

§

impl<P> Sync for PairingOutput<P>

§

impl<P> Unpin for PairingOutput<P>
where <P as Pairing>::TargetField: Unpin,

§

impl<P> UnwindSafe for PairingOutput<P>

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> CanonicalSerializeHashExt for T

Source§

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

Source§

unsafe fn clone_to_uninit(&self, dst: *mut T)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
Source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

Source§

fn equivalent(&self, key: &K) -> bool

Checks if this value is equivalent to the given key. 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> 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> ToString for T
where T: Display + ?Sized,

Source§

default fn to_string(&self) -> String

Converts the given value to a String. 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.
Source§

impl<T> UniformRand for T

Source§

fn rand<R>(rng: &mut R) -> T
where R: Rng + ?Sized,

Source§

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

Source§

fn vzip(self) -> V

Source§

impl<T, F> DomainCoeff<F> for T
where F: FftField, T: Copy + Send + Sync + Add<Output = T> + Sub<Output = T> + AddAssign + SubAssign + Zero + MulAssign<F> + Debug + PartialEq,