[][src]Struct curve25519_dalek::ristretto::CompressedRistretto

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

A Ristretto point, in compressed wire format.

The Ristretto encoding is canonical, so two points are equal if and only if their encodings are equal.

Methods

impl CompressedRistretto[src]

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

Copy the bytes of this CompressedRistretto.

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

View this CompressedRistretto as an array of bytes.

pub fn from_slice(bytes: &[u8]) -> CompressedRistretto[src]

Construct a CompressedRistretto from a slice of bytes.

Panics

If the input bytes slice does not have a length of 32.

pub fn decompress(&self) -> Option<RistrettoPoint>[src]

Attempt to decompress to an RistrettoPoint.

Return

  • Some(RistrettoPoint) if self was the canonical encoding of a point;

  • None if self was not the canonical encoding of a point.

Trait Implementations

impl Clone for CompressedRistretto[src]

impl ConstantTimeEq for CompressedRistretto[src]

impl Copy for CompressedRistretto[src]

impl Debug for CompressedRistretto[src]

impl Default for CompressedRistretto[src]

impl Eq for CompressedRistretto[src]

impl Identity for CompressedRistretto[src]

impl PartialEq<CompressedRistretto> for CompressedRistretto[src]

impl StructuralEq for CompressedRistretto[src]

impl StructuralPartialEq for CompressedRistretto[src]

Auto Trait Implementations

impl RefUnwindSafe for CompressedRistretto

impl Send for CompressedRistretto

impl Sync for CompressedRistretto

impl Unpin for CompressedRistretto

impl UnwindSafe for CompressedRistretto

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> 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> IsIdentity for T where
    T: ConstantTimeEq + Identity
[src]

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.