[][src]Struct zerocaf::montgomery::MontgomeryPoint

pub struct MontgomeryPoint(pub [u8; 32]);

Holds the u-coordinate of a point on the Montgomery form of Doppio-curve or its twist.

Methods

impl MontgomeryPoint[src]

pub fn as_bytes<'a>(&'a self) -> &'a [u8; 32][src]

View this MontgomeryPoint as an array of bytes.

pub fn to_bytes(&self) -> [u8; 32][src]

Convert this MontgomeryPoint to an array of bytes.

pub fn to_edwards(&self, _sign: u8) -> Option<EdwardsPoint>[src]

Attempt to convert to an EdwardsPoint, using the supplied choice of sign for the EdwardsPoint.

Trait Implementations

impl Clone for MontgomeryPoint[src]

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

Performs copy-assignment from source. Read more

impl Default for MontgomeryPoint[src]

impl PartialEq<MontgomeryPoint> for MontgomeryPoint[src]

#[must_use] fn ne(&self, other: &Rhs) -> bool1.0.0[src]

This method tests for !=.

impl Copy for MontgomeryPoint[src]

impl Eq for MontgomeryPoint[src]

impl Debug for MontgomeryPoint[src]

impl ConstantTimeEq for MontgomeryPoint[src]

Equality of MontgomeryPoints is defined mod p.

Auto Trait Implementations

Blanket Implementations

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

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

type Owned = T

The resulting type after obtaining ownership.

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

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<T> Borrow<T> for T where
    T: ?Sized
[src]

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

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

impl<T> Clear for T where
    T: InitializableFromZeroed + ?Sized

impl<T> InitializableFromZeroed for T where
    T: Default

impl<T> Same<T> for T

type Output = T

Should always be Self

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