[][src]Struct curve25519_dalek::backend::serial::curve_models::ProjectiveNielsPoint

pub struct ProjectiveNielsPoint {
    pub Y_plus_X: FieldElement51,
    pub Y_minus_X: FieldElement51,
    pub Z: FieldElement51,
    pub T2d: FieldElement51,
}

A pre-computed point on the \( \mathbb P^3 \) model for the curve, represented as \((Y+X, Y-X, Z, 2dXY)\) in "Niels coordinates".

More details on the relationships between the different curve models can be found in the module-level documentation.

Fields

Y_plus_X: FieldElement51Y_minus_X: FieldElement51Z: FieldElement51T2d: FieldElement51

Trait Implementations

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

type Output = CompletedPoint

The resulting type after applying the + operator.

impl Clone for ProjectiveNielsPoint[src]

impl ConditionallySelectable for ProjectiveNielsPoint[src]

impl Copy for ProjectiveNielsPoint[src]

impl Debug for ProjectiveNielsPoint[src]

impl Default for ProjectiveNielsPoint[src]

impl Identity for ProjectiveNielsPoint[src]

impl<'a> Neg for &'a ProjectiveNielsPoint[src]

type Output = ProjectiveNielsPoint

The resulting type after applying the - operator.

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

type Output = CompletedPoint

The resulting type after applying the - operator.

impl Zeroize for ProjectiveNielsPoint[src]

Auto Trait Implementations

impl RefUnwindSafe for ProjectiveNielsPoint

impl Send for ProjectiveNielsPoint

impl Sync for ProjectiveNielsPoint

impl Unpin for ProjectiveNielsPoint

impl UnwindSafe for ProjectiveNielsPoint

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, U> Cast<U> for T where
    U: FromCast<T>, 

impl<T> ConditionallyNegatable for T where
    T: ConditionallySelectable,
    &'a T: Neg,
    <&'a T as Neg>::Output == T, 
[src]

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

impl<T> FromBits<T> for T

impl<T> FromCast<T> for T

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

impl<T, U> IntoBits<U> for T where
    U: FromBits<T>, 

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 = !

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<Z> Zeroize for Z where
    Z: DefaultIsZeroes
[src]