[][src]Struct dusk_jubjub::JubJubExtended

pub struct JubJubExtended { /* 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 JubJubExtended, AffineNielsPoint or ExtendedNielsPoint.
  • Double it using double().
  • Compare it with another extended point using PartialEq or ct_eq().

Implementations

impl JubJubExtended[src]

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

Returns the x-coordinate of this point.

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

Returns the y-coordinate of this point.

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

Returns the z-coordinate of this point.

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

Returns the t1-coordinate of this point.

pub fn get_t2(&self) -> BlsScalar[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) -> JubJubExtended[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) -> [BlsScalar; 2][src]

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

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

type Output = JubJubExtended

The resulting type after applying the + operator.

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

type Output = JubJubExtended

The resulting type after applying the + operator.

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

type Output = JubJubExtended

The resulting type after applying the + operator.

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

type Output = JubJubExtended

The resulting type after applying the + operator.

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

type Output = JubJubExtended

The resulting type after applying the + operator.

impl<'b> Add<&'b JubJubAffine> for JubJubExtended[src]

type Output = JubJubExtended

The resulting type after applying the + operator.

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

type Output = JubJubExtended

The resulting type after applying the + operator.

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

type Output = JubJubExtended

The resulting type after applying the + operator.

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

type Output = JubJubExtended

The resulting type after applying the + operator.

impl Add<AffineNielsPoint> for JubJubExtended[src]

type Output = JubJubExtended

The resulting type after applying the + operator.

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

type Output = JubJubExtended

The resulting type after applying the + operator.

impl Add<ExtendedNielsPoint> for JubJubExtended[src]

type Output = JubJubExtended

The resulting type after applying the + operator.

impl<'a> Add<JubJubAffine> for &'a JubJubExtended[src]

type Output = JubJubExtended

The resulting type after applying the + operator.

impl Add<JubJubAffine> for JubJubExtended[src]

type Output = JubJubExtended

The resulting type after applying the + operator.

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

type Output = JubJubExtended

The resulting type after applying the + operator.

impl Add<JubJubExtended> for JubJubExtended[src]

type Output = JubJubExtended

The resulting type after applying the + operator.

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

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

impl<'b> AddAssign<&'b JubJubAffine> for JubJubExtended[src]

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

impl AddAssign<AffineNielsPoint> for JubJubExtended[src]

impl AddAssign<ExtendedNielsPoint> for JubJubExtended[src]

impl AddAssign<JubJubAffine> for JubJubExtended[src]

impl AddAssign<JubJubExtended> for JubJubExtended[src]

impl Clone for JubJubExtended[src]

impl ConditionallySelectable for JubJubExtended[src]

impl ConstantTimeEq for JubJubExtended[src]

impl Copy for JubJubExtended[src]

impl Debug for JubJubExtended[src]

impl Default for JubJubExtended[src]

fn default() -> JubJubExtended[src]

Returns the identity.

impl<'a> From<&'a JubJubExtended> for JubJubAffine[src]

fn from(extended: &'a JubJubExtended) -> JubJubAffine[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<JubJubAffine> for JubJubExtended[src]

fn from(affine: JubJubAffine) -> JubJubExtended[src]

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

impl From<JubJubExtended> for JubJubAffine[src]

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

type Output = JubJubExtended

The resulting type after applying the * operator.

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

type Output = JubJubExtended

The resulting type after applying the * operator.

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

type Output = JubJubExtended

The resulting type after applying the * operator.

impl Mul<Fr> for JubJubExtended[src]

type Output = JubJubExtended

The resulting type after applying the * operator.

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

impl MulAssign<Fr> for JubJubExtended[src]

impl Neg for JubJubExtended[src]

type Output = JubJubExtended

The resulting type after applying the - operator.

fn neg(self) -> JubJubExtended[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<JubJubExtended> for JubJubExtended[src]

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

type Output = JubJubExtended

The resulting type after applying the - operator.

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

type Output = JubJubExtended

The resulting type after applying the - operator.

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

type Output = JubJubExtended

The resulting type after applying the - operator.

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

type Output = JubJubExtended

The resulting type after applying the - operator.

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

type Output = JubJubExtended

The resulting type after applying the - operator.

impl<'b> Sub<&'b JubJubAffine> for JubJubExtended[src]

type Output = JubJubExtended

The resulting type after applying the - operator.

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

type Output = JubJubExtended

The resulting type after applying the - operator.

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

type Output = JubJubExtended

The resulting type after applying the - operator.

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

type Output = JubJubExtended

The resulting type after applying the - operator.

impl Sub<AffineNielsPoint> for JubJubExtended[src]

type Output = JubJubExtended

The resulting type after applying the - operator.

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

type Output = JubJubExtended

The resulting type after applying the - operator.

impl Sub<ExtendedNielsPoint> for JubJubExtended[src]

type Output = JubJubExtended

The resulting type after applying the - operator.

impl<'a> Sub<JubJubAffine> for &'a JubJubExtended[src]

type Output = JubJubExtended

The resulting type after applying the - operator.

impl Sub<JubJubAffine> for JubJubExtended[src]

type Output = JubJubExtended

The resulting type after applying the - operator.

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

type Output = JubJubExtended

The resulting type after applying the - operator.

impl Sub<JubJubExtended> for JubJubExtended[src]

type Output = JubJubExtended

The resulting type after applying the - operator.

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

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

impl<'b> SubAssign<&'b JubJubAffine> for JubJubExtended[src]

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

impl SubAssign<AffineNielsPoint> for JubJubExtended[src]

impl SubAssign<ExtendedNielsPoint> for JubJubExtended[src]

impl SubAssign<JubJubAffine> for JubJubExtended[src]

impl SubAssign<JubJubExtended> for JubJubExtended[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.