[−][src]Struct curve25519_dalek::ristretto::CompressedRistretto
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. For a
panic-safe version of this API, see the implementation of
TryFrom<&[u8]>
.
pub fn decompress(&self) -> Option<RistrettoPoint>
[src]
Attempt to decompress to an RistrettoPoint
.
Return
-
Some(RistrettoPoint)
ifself
was the canonical encoding of a point; -
None
ifself
was not the canonical encoding of a point.
Trait Implementations
impl Identity for CompressedRistretto
[src]
fn identity() -> CompressedRistretto
[src]
impl From<[u8; 32]> for CompressedRistretto
[src]
impl Debug for CompressedRistretto
[src]
impl PartialEq<CompressedRistretto> for CompressedRistretto
[src]
fn eq(&self, other: &CompressedRistretto) -> bool
[src]
fn ne(&self, other: &CompressedRistretto) -> bool
[src]
impl Eq for CompressedRistretto
[src]
impl<'_> TryFrom<&'_ [u8]> for CompressedRistretto
[src]
type Error = CurveError
The type returned in the event of a conversion error.
fn try_from(bytes: &[u8]) -> Result<CompressedRistretto, CurveError>
[src]
impl Copy for CompressedRistretto
[src]
impl Clone for CompressedRistretto
[src]
fn clone(&self) -> CompressedRistretto
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Default for CompressedRistretto
[src]
fn default() -> CompressedRistretto
[src]
impl ConstantTimeEq for CompressedRistretto
[src]
fn ct_eq(&self, other: &CompressedRistretto) -> Choice
[src]
impl Serialize for CompressedRistretto
[src]
impl<'de> Deserialize<'de> for CompressedRistretto
[src]
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error> where
D: Deserializer<'de>,
[src]
D: Deserializer<'de>,
Auto Trait Implementations
impl Unpin for CompressedRistretto
impl Send for CompressedRistretto
impl Sync for CompressedRistretto
impl UnwindSafe for CompressedRistretto
impl RefUnwindSafe for CompressedRistretto
Blanket Implementations
impl<T> IsIdentity for T where
T: ConstantTimeEq + Identity,
[src]
T: ConstantTimeEq + Identity,
fn is_identity(&Self) -> bool
[src]
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
impl<T> DeserializeOwned for T where
T: Deserialize<'de>,
[src]
T: Deserialize<'de>,