[][src]Struct dusk_jubjub::ExtendedPoint

pub struct ExtendedPoint { /* fields omitted */ }

This represents an extended point (X, Y, Z, T1, T2) with Z nonzero, corresponding to the affine point (X/Z, Y/Z). We always have T1 * T2 = XY/Z.

You can do the following things with a point in this form:

  • Convert it into a point in the affine form.
  • Add it to an ExtendedPoint, AffineNielsPoint or ExtendedNielsPoint.
  • Double it using double().
  • Compare it with another extended point using PartialEq or ct_eq().

Implementations

impl ExtendedPoint[src]

pub fn get_x(&self) -> Fq[src]

Returns the x-coordinate of this point.

pub fn get_y(&self) -> Fq[src]

Returns the y-coordinate of this point.

pub fn get_z(&self) -> Fq[src]

Returns the z-coordinate of this point.

pub fn get_t1(&self) -> Fq[src]

Returns the t1-coordinate of this point.

pub fn get_t2(&self) -> Fq[src]

Returns the t2-coordinate of this point.

pub const fn identity() -> Self[src]

Constructs an extended point from the neutral element (0, 1).

pub fn is_identity(&self) -> Choice[src]

Determines if this point is the identity.

pub fn is_small_order(&self) -> Choice[src]

Determines if this point is of small order.

pub fn is_torsion_free(&self) -> Choice[src]

Determines if this point is torsion free and so is contained in the prime order subgroup.

pub fn is_prime_order(&self) -> Choice[src]

Determines if this point is prime order, or in other words that the smallest scalar multiplied by this point that produces the identity is r. This is equivalent to checking that the point is both torsion free and not the identity.

pub fn mul_by_cofactor(&self) -> ExtendedPoint[src]

Multiplies this element by the cofactor 8.

pub fn to_niels(&self) -> ExtendedNielsPoint[src]

Performs a pre-processing step that produces an ExtendedNielsPoint for use in multiple additions.

pub fn to_hash_inputs(&self) -> [Fq; 2][src]

Returns two scalars suitable for hashing that represent the Extended Point.

pub fn double(&self) -> ExtendedPoint[src]

Computes the doubling of a point more efficiently than a point can be added to itself.

Trait Implementations

impl<'a, 'b> Add<&'b AffineNielsPoint> for &'a ExtendedPoint[src]

type Output = ExtendedPoint

The resulting type after applying the + operator.

impl<'b> Add<&'b AffineNielsPoint> for ExtendedPoint[src]

type Output = ExtendedPoint

The resulting type after applying the + operator.

impl<'a, 'b> Add<&'b AffinePoint> for &'a ExtendedPoint[src]

type Output = ExtendedPoint

The resulting type after applying the + operator.

impl<'b> Add<&'b AffinePoint> for ExtendedPoint[src]

type Output = ExtendedPoint

The resulting type after applying the + operator.

impl<'a, 'b> Add<&'b ExtendedNielsPoint> for &'a ExtendedPoint[src]

type Output = ExtendedPoint

The resulting type after applying the + operator.

impl<'b> Add<&'b ExtendedNielsPoint> for ExtendedPoint[src]

type Output = ExtendedPoint

The resulting type after applying the + operator.

impl<'a, 'b> Add<&'b ExtendedPoint> for &'a ExtendedPoint[src]

type Output = ExtendedPoint

The resulting type after applying the + operator.

impl<'b> Add<&'b ExtendedPoint> for ExtendedPoint[src]

type Output = ExtendedPoint

The resulting type after applying the + operator.

impl<'a> Add<AffineNielsPoint> for &'a ExtendedPoint[src]

type Output = ExtendedPoint

The resulting type after applying the + operator.

impl Add<AffineNielsPoint> for ExtendedPoint[src]

type Output = ExtendedPoint

The resulting type after applying the + operator.

impl<'a> Add<AffinePoint> for &'a ExtendedPoint[src]

type Output = ExtendedPoint

The resulting type after applying the + operator.

impl Add<AffinePoint> for ExtendedPoint[src]

type Output = ExtendedPoint

The resulting type after applying the + operator.

impl<'a> Add<ExtendedNielsPoint> for &'a ExtendedPoint[src]

type Output = ExtendedPoint

The resulting type after applying the + operator.

impl Add<ExtendedNielsPoint> for ExtendedPoint[src]

type Output = ExtendedPoint

The resulting type after applying the + operator.

impl<'a> Add<ExtendedPoint> for &'a ExtendedPoint[src]

type Output = ExtendedPoint

The resulting type after applying the + operator.

impl Add<ExtendedPoint> for ExtendedPoint[src]

type Output = ExtendedPoint

The resulting type after applying the + operator.

impl<'b> AddAssign<&'b AffineNielsPoint> for ExtendedPoint[src]

impl<'b> AddAssign<&'b AffinePoint> for ExtendedPoint[src]

impl<'b> AddAssign<&'b ExtendedNielsPoint> for ExtendedPoint[src]

impl<'b> AddAssign<&'b ExtendedPoint> for ExtendedPoint[src]

impl AddAssign<AffineNielsPoint> for ExtendedPoint[src]

impl AddAssign<AffinePoint> for ExtendedPoint[src]

impl AddAssign<ExtendedNielsPoint> for ExtendedPoint[src]

impl AddAssign<ExtendedPoint> for ExtendedPoint[src]

impl Clone for ExtendedPoint[src]

impl ConditionallySelectable for ExtendedPoint[src]

impl ConstantTimeEq for ExtendedPoint[src]

impl Copy for ExtendedPoint[src]

impl Debug for ExtendedPoint[src]

impl Default for ExtendedPoint[src]

fn default() -> ExtendedPoint[src]

Returns the identity.

impl<'a> From<&'a ExtendedPoint> for AffinePoint[src]

fn from(extended: &'a ExtendedPoint) -> AffinePoint[src]

Constructs an affine point from an extended point using the map (X, Y, Z, T1, T2) => (XZ, Y/Z) as Z is always nonzero. This requires a field inversion and so it is recommended to perform these in a batch using batch_normalize instead.

impl From<AffinePoint> for ExtendedPoint[src]

fn from(affine: AffinePoint) -> ExtendedPoint[src]

Constructs an extended point (with Z = 1) from an affine point using the map (x, y) => (x, y, 1, x, y).

impl From<ExtendedPoint> for AffinePoint[src]

impl<'a, 'b> Mul<&'b Fr> for &'a ExtendedPoint[src]

type Output = ExtendedPoint

The resulting type after applying the * operator.

impl<'b> Mul<&'b Fr> for ExtendedPoint[src]

type Output = ExtendedPoint

The resulting type after applying the * operator.

impl<'a> Mul<Fr> for &'a ExtendedPoint[src]

type Output = ExtendedPoint

The resulting type after applying the * operator.

impl Mul<Fr> for ExtendedPoint[src]

type Output = ExtendedPoint

The resulting type after applying the * operator.

impl<'b> MulAssign<&'b Fr> for ExtendedPoint[src]

impl MulAssign<Fr> for ExtendedPoint[src]

impl Neg for ExtendedPoint[src]

type Output = ExtendedPoint

The resulting type after applying the - operator.

fn neg(self) -> ExtendedPoint[src]

Computes the negation of a point P = (X, Y, Z, T) as -P = (-X, Y, Z, -T1, T2). The choice of T1 is made without loss of generality.

impl PartialEq<ExtendedPoint> for ExtendedPoint[src]

impl<'a, 'b> Sub<&'b AffineNielsPoint> for &'a ExtendedPoint[src]

type Output = ExtendedPoint

The resulting type after applying the - operator.

impl<'b> Sub<&'b AffineNielsPoint> for ExtendedPoint[src]

type Output = ExtendedPoint

The resulting type after applying the - operator.

impl<'a, 'b> Sub<&'b AffinePoint> for &'a ExtendedPoint[src]

type Output = ExtendedPoint

The resulting type after applying the - operator.

impl<'b> Sub<&'b AffinePoint> for ExtendedPoint[src]

type Output = ExtendedPoint

The resulting type after applying the - operator.

impl<'a, 'b> Sub<&'b ExtendedNielsPoint> for &'a ExtendedPoint[src]

type Output = ExtendedPoint

The resulting type after applying the - operator.

impl<'b> Sub<&'b ExtendedNielsPoint> for ExtendedPoint[src]

type Output = ExtendedPoint

The resulting type after applying the - operator.

impl<'a, 'b> Sub<&'b ExtendedPoint> for &'a ExtendedPoint[src]

type Output = ExtendedPoint

The resulting type after applying the - operator.

impl<'b> Sub<&'b ExtendedPoint> for ExtendedPoint[src]

type Output = ExtendedPoint

The resulting type after applying the - operator.

impl<'a> Sub<AffineNielsPoint> for &'a ExtendedPoint[src]

type Output = ExtendedPoint

The resulting type after applying the - operator.

impl Sub<AffineNielsPoint> for ExtendedPoint[src]

type Output = ExtendedPoint

The resulting type after applying the - operator.

impl<'a> Sub<AffinePoint> for &'a ExtendedPoint[src]

type Output = ExtendedPoint

The resulting type after applying the - operator.

impl Sub<AffinePoint> for ExtendedPoint[src]

type Output = ExtendedPoint

The resulting type after applying the - operator.

impl<'a> Sub<ExtendedNielsPoint> for &'a ExtendedPoint[src]

type Output = ExtendedPoint

The resulting type after applying the - operator.

impl Sub<ExtendedNielsPoint> for ExtendedPoint[src]

type Output = ExtendedPoint

The resulting type after applying the - operator.

impl<'a> Sub<ExtendedPoint> for &'a ExtendedPoint[src]

type Output = ExtendedPoint

The resulting type after applying the - operator.

impl Sub<ExtendedPoint> for ExtendedPoint[src]

type Output = ExtendedPoint

The resulting type after applying the - operator.

impl<'b> SubAssign<&'b AffineNielsPoint> for ExtendedPoint[src]

impl<'b> SubAssign<&'b AffinePoint> for ExtendedPoint[src]

impl<'b> SubAssign<&'b ExtendedNielsPoint> for ExtendedPoint[src]

impl<'b> SubAssign<&'b ExtendedPoint> for ExtendedPoint[src]

impl SubAssign<AffineNielsPoint> for ExtendedPoint[src]

impl SubAssign<AffinePoint> for ExtendedPoint[src]

impl SubAssign<ExtendedNielsPoint> for ExtendedPoint[src]

impl SubAssign<ExtendedPoint> for ExtendedPoint[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

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