[−][src]Struct curve25519_dalek::montgomery::MontgomeryPoint
Holds the \(u\)-coordinate of a point on the Montgomery form of Curve25519 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
.
Return
-
Some(EdwardsPoint)
ifself
is the \(u\)-coordinate of a point on (the Montgomery form of) Curve25519; -
None
ifself
is the \(u\)-coordinate of a point on the twist of (the Montgomery form of) Curve25519;
Trait Implementations
impl From<[u8; 32]> for MontgomeryPoint
[src]
impl Debug for MontgomeryPoint
[src]
impl PartialEq<MontgomeryPoint> for MontgomeryPoint
[src]
fn eq(&self, other: &MontgomeryPoint) -> bool
[src]
#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0[src]
impl Eq for MontgomeryPoint
[src]
impl<'_> TryFrom<&'_ [u8]> for MontgomeryPoint
[src]
type Error = CurveError
The type returned in the event of a conversion error.
fn try_from(bytes: &[u8]) -> Result<MontgomeryPoint, CurveError>
[src]
impl<'b> Mul<&'b Scalar> for MontgomeryPoint
[src]
type Output = MontgomeryPoint
The resulting type after applying the *
operator.
fn mul(self, rhs: &'b Scalar) -> MontgomeryPoint
[src]
impl<'a> Mul<Scalar> for &'a MontgomeryPoint
[src]
type Output = MontgomeryPoint
The resulting type after applying the *
operator.
fn mul(self, rhs: Scalar) -> MontgomeryPoint
[src]
impl Mul<Scalar> for MontgomeryPoint
[src]
type Output = MontgomeryPoint
The resulting type after applying the *
operator.
fn mul(self, rhs: Scalar) -> MontgomeryPoint
[src]
impl<'b> Mul<&'b MontgomeryPoint> for Scalar
[src]
type Output = MontgomeryPoint
The resulting type after applying the *
operator.
fn mul(self, rhs: &'b MontgomeryPoint) -> MontgomeryPoint
[src]
impl<'a> Mul<MontgomeryPoint> for &'a Scalar
[src]
type Output = MontgomeryPoint
The resulting type after applying the *
operator.
fn mul(self, rhs: MontgomeryPoint) -> MontgomeryPoint
[src]
impl Mul<MontgomeryPoint> for Scalar
[src]
type Output = MontgomeryPoint
The resulting type after applying the *
operator.
fn mul(self, rhs: MontgomeryPoint) -> MontgomeryPoint
[src]
impl<'a, 'b> Mul<&'b Scalar> for &'a MontgomeryPoint
[src]
Multiply this MontgomeryPoint
by a Scalar
.
type Output = MontgomeryPoint
The resulting type after applying the *
operator.
fn mul(self, scalar: &'b Scalar) -> MontgomeryPoint
[src]
Given self
\( = u_0(P) \), and a Scalar
\(n\), return \( u_0([n]P) \).
impl<'a, 'b> Mul<&'b MontgomeryPoint> for &'a Scalar
[src]
type Output = MontgomeryPoint
The resulting type after applying the *
operator.
fn mul(self, point: &'b MontgomeryPoint) -> MontgomeryPoint
[src]
impl MulAssign<Scalar> for MontgomeryPoint
[src]
fn mul_assign(&mut self, rhs: Scalar)
[src]
impl<'b> MulAssign<&'b Scalar> for MontgomeryPoint
[src]
fn mul_assign(&mut self, scalar: &'b Scalar)
[src]
impl Copy for MontgomeryPoint
[src]
impl Clone for MontgomeryPoint
[src]
fn clone(&self) -> MontgomeryPoint
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Default for MontgomeryPoint
[src]
fn default() -> MontgomeryPoint
[src]
impl ConstantTimeEq for MontgomeryPoint
[src]
Equality of MontgomeryPoint
s is defined mod p.
fn ct_eq(&self, other: &MontgomeryPoint) -> Choice
[src]
Auto Trait Implementations
impl Unpin for MontgomeryPoint
impl Send for MontgomeryPoint
impl Sync for MontgomeryPoint
impl UnwindSafe for MontgomeryPoint
impl RefUnwindSafe for MontgomeryPoint
Blanket Implementations
impl<T> From<T> for T
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T
[src]
fn clone_into(&self, target: &mut T)
[src]
impl<T> Clear for T where
T: InitializableFromZeroed + ?Sized,
[src]
T: InitializableFromZeroed + ?Sized,
impl<T> InitializableFromZeroed for T where
T: Default,
[src]
T: Default,
unsafe fn initialize(place: *mut T)
[src]
impl<T> Same<T> for T
[src]
type Output = T
Should always be Self