[][src]Struct jubjub::ExtendedPoint

pub struct ExtendedPoint { /* fields omitted */ }

This represents an extended point (U, V, Z, T1, T2) with Z nonzero, corresponding to the affine point (U/Z, V/Z). We always have T1 * T2 = UV/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().

Methods

impl ExtendedPoint[src]

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 double(&self) -> ExtendedPoint[src]

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

Trait Implementations

impl Copy for ExtendedPoint[src]

impl Debug for ExtendedPoint[src]

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> 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, '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> 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, '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<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<'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> 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 PartialEq<ExtendedPoint> for ExtendedPoint[src]

#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0
[src]

This method tests for !=.

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 (u, v) => (u, v, 1, u, v).

impl From<ExtendedPoint> for AffinePoint[src]

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

Constructs an affine point from an extended point using the map (U, V, Z, T1, T2) => (U/Z, V/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<'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> 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, '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> 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, '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<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<'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> 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, '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 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 = (U, V, Z, T) as -P = (-U, V, Z, -T1, T2). The choice of T1 is made without loss of generality.

impl AddAssign<ExtendedNielsPoint> for ExtendedPoint[src]

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

impl AddAssign<AffineNielsPoint> for ExtendedPoint[src]

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

impl AddAssign<ExtendedPoint> for ExtendedPoint[src]

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

impl AddAssign<AffinePoint> for ExtendedPoint[src]

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

impl SubAssign<ExtendedNielsPoint> for ExtendedPoint[src]

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

impl SubAssign<AffineNielsPoint> for ExtendedPoint[src]

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

impl SubAssign<ExtendedPoint> for ExtendedPoint[src]

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

impl SubAssign<AffinePoint> for ExtendedPoint[src]

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

impl MulAssign<Fr> for ExtendedPoint[src]

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

impl Clone for ExtendedPoint[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Default for ExtendedPoint[src]

fn default() -> ExtendedPoint[src]

Returns the identity.

impl ConstantTimeEq for ExtendedPoint[src]

impl ConditionallySelectable for ExtendedPoint[src]

fn conditional_assign(&mut self, other: &Self, choice: Choice)[src]

Conditionally assign other to self, according to choice. Read more

fn conditional_swap(a: &mut Self, b: &mut Self, choice: Choice)[src]

Conditionally swap self and other if choice == 1; otherwise, reassign both unto themselves. Read more

Auto Trait Implementations

Blanket Implementations

impl<T> From for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto 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<T, U> Into for T where
    U: From<T>, 
[src]

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

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

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

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

type Owned = T