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

pub struct AffineNielsPoint {
    pub y_plus_x: FieldElement51,
    pub y_minus_x: FieldElement51,
    pub xy2d: FieldElement51,
}

A pre-computed point in the affine model for the curve, represented as \((y+x, y-x, 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: FieldElement51xy2d: FieldElement51

Trait Implementations

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

type Output = CompletedPoint

The resulting type after applying the + operator.

impl Clone for AffineNielsPoint[src]

impl ConditionallySelectable for AffineNielsPoint[src]

impl Copy for AffineNielsPoint[src]

impl Debug for AffineNielsPoint[src]

impl Default for AffineNielsPoint[src]

impl Eq for AffineNielsPoint[src]

impl Identity for AffineNielsPoint[src]

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

type Output = AffineNielsPoint

The resulting type after applying the - operator.

impl PartialEq<AffineNielsPoint> for AffineNielsPoint[src]

impl StructuralEq for AffineNielsPoint[src]

impl StructuralPartialEq for AffineNielsPoint[src]

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

type Output = CompletedPoint

The resulting type after applying the - operator.

impl Zeroize for AffineNielsPoint[src]

Auto Trait Implementations

impl RefUnwindSafe for AffineNielsPoint

impl Send for AffineNielsPoint

impl Sync for AffineNielsPoint

impl Unpin for AffineNielsPoint

impl UnwindSafe for AffineNielsPoint

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]