[][src]Struct salty::PublicKey

pub struct PublicKey { /* fields omitted */ }

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

Methods

impl PublicKey[src]

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

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

Trait Implementations

impl<'_> From<&'_ SecretKey> 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]