[][src]Struct salty::PublicKey

pub struct PublicKey {
    pub(crate) point: CurvePoint,
    pub compressed: CompressedY,
}

a public key, consisting internally of both its defining point (the secret scalar times the curve base point) and the compression of that point.

Fields

point: CurvePointcompressed: CompressedY

Methods

impl PublicKey[src]

pub fn verify(&self, message: &[u8], signature: &Signature) -> Result[src]

pub fn verify_with_context(
    &self,
    message: &[u8],
    signature: &Signature,
    context: &[u8]
) -> Result
[src]

pub fn verify_prehashed(
    &self,
    prehashed_message: &[u8; 64],
    signature: &Signature,
    context: Option<&[u8]>
) -> Result
[src]

impl PublicKey[src]

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

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

Trait Implementations

impl<'_> From<&'_ SecretKey> for PublicKey[src]

impl PartialEq<PublicKey> for PublicKey[src]

impl Debug for PublicKey[src]

impl<'_> TryFrom<&'_ [u8; 32]> for PublicKey[src]

type Error = Error

The type returned in the event of a conversion error.

impl Default for PublicKey[src]

Auto Trait Implementations

impl Unpin for PublicKey

impl Send for PublicKey

impl Sync for PublicKey

Blanket Implementations

impl<T> From<T> for 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> Into<U> for T where
    U: From<T>, 
[src]

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]