[−][src]Struct zerocaf::edwards::CompressedEdwardsY
The first 255 bits of a CompressedEdwardsY
represent the
(y)-coordinate. The high bit of the 32nd byte gives the sign of (x).
Methods
impl CompressedEdwardsY
[src]
pub fn from_slice(bytes: &[u8]) -> CompressedEdwardsY
[src]
Construct a CompressedEdwardsY
from a slice of bytes.
Note:
This function should only be used to get a
CompressedEdwardsY
compressed point from
a [u8; 32] that we know that is already a
compressed point.
If this function is used with Y-coordinates randomly might give errors.
pub fn to_bytes(&self) -> [u8; 32]
[src]
Return the CompressedEdwardsY
as an array of bytes (it's cannonical state).
pub fn decompress(&self) -> Option<EdwardsPoint>
[src]
Attempt to decompress to an EdwardsPoint
.
Returns None
if the input is not the Y-coordinate of a
curve point.
Trait Implementations
impl Clone for CompressedEdwardsY
[src]
fn clone(&self) -> CompressedEdwardsY
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl ConstantTimeEq for CompressedEdwardsY
[src]
fn ct_eq(&self, other: &CompressedEdwardsY) -> Choice
[src]
impl Copy for CompressedEdwardsY
[src]
impl Debug for CompressedEdwardsY
[src]
impl Default for CompressedEdwardsY
[src]
fn default() -> CompressedEdwardsY
[src]
Returns the identity for CompressedEdwardsY
point.
impl Eq for CompressedEdwardsY
[src]
impl Identity for CompressedEdwardsY
[src]
fn identity() -> CompressedEdwardsY
[src]
Returns the CompressedEdwardsY
identity point value
that corresponds to 1 (mod l)
with the x-sign bit setted to 0
.
impl Index<usize> for CompressedEdwardsY
[src]
impl IndexMut<usize> for CompressedEdwardsY
[src]
impl<'a> Neg for &'a CompressedEdwardsY
[src]
type Output = CompressedEdwardsY
The resulting type after applying the -
operator.
fn neg(self) -> CompressedEdwardsY
[src]
Negates an CompressedEdwardsY
by decompressing
it, negating over Twisted Edwards Extended
Projective Coordinates and compressing it back.
impl Neg for CompressedEdwardsY
[src]
type Output = CompressedEdwardsY
The resulting type after applying the -
operator.
fn neg(self) -> CompressedEdwardsY
[src]
Negates an CompressedEdwardsY
by decompressing
it, negating over Twisted Edwards Extended
Projective Coordinates and compressing it back.
impl PartialEq<CompressedEdwardsY> for CompressedEdwardsY
[src]
Auto Trait Implementations
impl RefUnwindSafe for CompressedEdwardsY
impl Send for CompressedEdwardsY
impl Sync for CompressedEdwardsY
impl Unpin for CompressedEdwardsY
impl UnwindSafe for CompressedEdwardsY
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
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> Clear for T where
T: InitializableFromZeroed + ?Sized,
T: InitializableFromZeroed + ?Sized,
fn clear(&mut self)
impl<T> From<T> for T
[src]
impl<T> InitializableFromZeroed for T where
T: Default,
T: Default,
unsafe fn initialize(place: *mut T)
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> Same<T> for T
type Output = T
Should always be Self
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, 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> 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<V, T> VZip<V> for T where
V: MultiLane<T>,
V: MultiLane<T>,