Type Alias G2Projective

Source
pub type G2Projective<P> = Projective<<P as BnConfig>::G2Config>;

Aliased Type§

struct G2Projective<P> {
    pub x: <<P as BnConfig>::G2Config as CurveConfig>::BaseField,
    pub y: <<P as BnConfig>::G2Config as CurveConfig>::BaseField,
    pub z: <<P as BnConfig>::G2Config as CurveConfig>::BaseField,
}

Fields§

§x: <<P as BnConfig>::G2Config as CurveConfig>::BaseField

X / Z projection of the affine X

§y: <<P as BnConfig>::G2Config as CurveConfig>::BaseField

Y / Z projection of the affine Y

§z: <<P as BnConfig>::G2Config as CurveConfig>::BaseField

Projective multiplicative inverse. Will be 0 only at infinity.

Implementations

Source§

impl<P: SWCurveConfig> Projective<P>

Source

pub const fn new_unchecked( x: P::BaseField, y: P::BaseField, z: P::BaseField, ) -> Self

Constructs a new group element without checking whether the coordinates specify a point in the subgroup.

Source

pub fn new(x: P::BaseField, y: P::BaseField, z: P::BaseField) -> Self

Constructs a new group element in a way while enforcing that points are in the prime-order subgroup.

Trait Implementations

Source§

impl<'a, P: SWCurveConfig> Add<&'a Projective<P>> for Projective<P>

Source§

type Output = Projective<P>

The resulting type after applying the + operator.
Source§

fn add(self, other: &'a Self) -> Self

Performs the + operation. Read more
Source§

impl<'a, P: SWCurveConfig> Add<&'a mut Projective<P>> for Projective<P>

Source§

type Output = Projective<P>

The resulting type after applying the + operator.
Source§

fn add(self, other: &'a mut Self) -> Self

Performs the + operation. Read more
Source§

impl<P: SWCurveConfig, T: Borrow<Affine<P>>> Add<T> for Projective<P>

Source§

type Output = Projective<P>

The resulting type after applying the + operator.
Source§

fn add(self, other: T) -> Self

Performs the + operation. Read more
Source§

impl<P: SWCurveConfig> Add for Projective<P>

Source§

type Output = Projective<P>

The resulting type after applying the + operator.
Source§

fn add(self, other: Self) -> Self

Performs the + operation. Read more
Source§

impl<'a, P: SWCurveConfig> AddAssign<&'a Projective<P>> for Projective<P>

Source§

fn add_assign(&mut self, other: &'a Self)

Performs the += operation. Read more
Source§

impl<'a, P: SWCurveConfig> AddAssign<&'a mut Projective<P>> for Projective<P>

Source§

fn add_assign(&mut self, other: &'a mut Self)

Performs the += operation. Read more
Source§

impl<P: SWCurveConfig, T: Borrow<Affine<P>>> AddAssign<T> for Projective<P>

Source§

impl<P: SWCurveConfig> AddAssign for Projective<P>

Source§

fn add_assign(&mut self, other: Self)

Performs the += operation. Read more
Source§

impl<P: SWCurveConfig> AdditiveGroup for Projective<P>

Source§

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

Sets self = 2 * self. Note that Jacobian formulae are incomplete, and so doubling cannot be computed as self + self. Instead, this implementation uses the following specialized doubling formulae:

Source§

const ZERO: Self

The additive identity of the field.
Source§

type Scalar = <P as CurveConfig>::ScalarField

Source§

fn double(&self) -> Self

Doubles self.
Source§

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

Negates self in place.
Source§

impl<P: SWCurveConfig> CanonicalDeserialize for Projective<P>

Source§

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

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: SWCurveConfig> CanonicalSerialize for Projective<P>

Source§

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

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: SWCurveConfig> Clone for Projective<P>
where P::BaseField: Copy,

Source§

fn clone(&self) -> Self

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: SWCurveConfig> CurveGroup for Projective<P>

Source§

fn normalize_batch(v: &[Self]) -> Vec<Self::Affine>

Normalizes a slice of projective elements so that conversion to affine is cheap.

In more detail, this method converts a curve point in Jacobian coordinates (x, y, z) into an equivalent representation (x/z^2, y/z^3, 1).

For N = v.len(), this costs 1 inversion + 6N field multiplications + N field squarings.

(Where batch inversion comprises 3N field multiplications + 1 inversion of these operations)

Source§

type Config = P

Source§

type BaseField = <P as CurveConfig>::BaseField

The field over which this curve is defined.
Source§

type Affine = Affine<P>

The affine representation of this element.
Source§

type FullGroup = Affine<P>

Type representing an element of the full elliptic curve group, not just the prime order subgroup.
Source§

fn into_affine(self) -> Self::Affine

Converts self into the affine representation.
Source§

impl<P: SWCurveConfig> Debug for Projective<P>

Source§

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

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

impl<P: SWCurveConfig> Default for Projective<P>

Source§

fn default() -> Self

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

impl<P: SWCurveConfig> Display for Projective<P>

Source§

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

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

impl<P: SWCurveConfig> From<Affine<P>> for Projective<P>

Source§

fn from(p: Affine<P>) -> Projective<P>

Converts to this type from the input type.
Source§

impl<P: SWCurveConfig> Hash for Projective<P>

Source§

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

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: SWCurveConfig, T: Borrow<P::ScalarField>> Mul<T> for Projective<P>

Source§

type Output = Projective<P>

The resulting type after applying the * operator.
Source§

fn mul(self, other: T) -> Self

Performs the * operation. Read more
Source§

impl<P: SWCurveConfig, T: Borrow<P::ScalarField>> MulAssign<T> for Projective<P>

Source§

fn mul_assign(&mut self, other: T)

Performs the *= operation. Read more
Source§

impl<P: SWCurveConfig> Neg for Projective<P>

Source§

type Output = Projective<P>

The resulting type after applying the - operator.
Source§

fn neg(self) -> Self

Performs the unary - operation. Read more
Source§

impl<P: SWCurveConfig> PartialEq<Affine<P>> for Projective<P>

Source§

fn eq(&self, other: &Affine<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: SWCurveConfig> PartialEq for Projective<P>

Source§

fn eq(&self, other: &Self) -> 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: SWCurveConfig> PrimeGroup for Projective<P>

Source§

type ScalarField = <P as CurveConfig>::ScalarField

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

fn generator() -> Self

Returns a fixed generator of this group.
Source§

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

Performs scalar multiplication of this element.
Source§

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

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

impl<P: SWCurveConfig> ScalarMul for Projective<P>

Source§

const NEGATION_IS_CHEAP: bool = true

Source§

type MulBase = Affine<P>

Source§

fn batch_convert_to_mul_base(bases: &[Self]) -> Vec<Self::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, P: SWCurveConfig> Sub<&'a Projective<P>> for Projective<P>

Source§

type Output = Projective<P>

The resulting type after applying the - operator.
Source§

fn sub(self, other: &'a Self) -> Self

Performs the - operation. Read more
Source§

impl<'a, P: SWCurveConfig> Sub<&'a mut Projective<P>> for Projective<P>

Source§

type Output = Projective<P>

The resulting type after applying the - operator.
Source§

fn sub(self, other: &'a mut Self) -> Self

Performs the - operation. Read more
Source§

impl<P: SWCurveConfig, T: Borrow<Affine<P>>> Sub<T> for Projective<P>

Source§

type Output = Projective<P>

The resulting type after applying the - operator.
Source§

fn sub(self, other: T) -> Self

Performs the - operation. Read more
Source§

impl<P: SWCurveConfig> Sub for Projective<P>

Source§

type Output = Projective<P>

The resulting type after applying the - operator.
Source§

fn sub(self, other: Self) -> Self

Performs the - operation. Read more
Source§

impl<'a, P: SWCurveConfig> SubAssign<&'a Projective<P>> for Projective<P>

Source§

fn sub_assign(&mut self, other: &'a Self)

Performs the -= operation. Read more
Source§

impl<'a, P: SWCurveConfig> SubAssign<&'a mut Projective<P>> for Projective<P>

Source§

fn sub_assign(&mut self, other: &'a mut Self)

Performs the -= operation. Read more
Source§

impl<P: SWCurveConfig, T: Borrow<Affine<P>>> SubAssign<T> for Projective<P>

Source§

fn sub_assign(&mut self, other: T)

Performs the -= operation. Read more
Source§

impl<P: SWCurveConfig> SubAssign for Projective<P>

Source§

fn sub_assign(&mut self, other: Self)

Performs the -= operation. Read more
Source§

impl<'a, P: SWCurveConfig> Sum<&'a Projective<P>> for Projective<P>

Source§

fn sum<I: Iterator<Item = &'a Self>>(iter: I) -> Self

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

impl<P: SWCurveConfig, T: Borrow<Affine<P>>> Sum<T> for Projective<P>

Source§

fn sum<I: Iterator<Item = T>>(iter: I) -> Self

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

impl<P: SWCurveConfig> Sum for Projective<P>

Source§

fn sum<I: Iterator<Item = Self>>(iter: I) -> Self

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

impl<M: SWCurveConfig, ConstraintF: Field> ToConstraintField<ConstraintF> for Projective<M>
where M::BaseField: ToConstraintField<ConstraintF>,

Source§

fn to_field_elements(&self) -> Option<Vec<ConstraintF>>

Source§

impl<P: SWCurveConfig> Valid for Projective<P>

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: SWCurveConfig> VariableBaseMSM for Projective<P>

Source§

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

Performs multi-scalar multiplication. Read more
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_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::Item: Borrow<Self::ScalarField>, J: Iterable, J::Item: Borrow<Self::MulBase>,

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

impl<P: SWCurveConfig> Zero for Projective<P>

Source§

fn zero() -> Self

Returns the point at infinity, which always has Z = 0.

Source§

fn is_zero(&self) -> bool

Checks whether self.z.is_zero().

Source§

fn set_zero(&mut self)

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

impl<P: SWCurveConfig> Zeroize for Projective<P>

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: SWCurveConfig> Copy for Projective<P>
where P::BaseField: Copy,

Source§

impl<P: SWCurveConfig> Eq for Projective<P>