[−][src]Struct salty::PublicKey
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: CurvePoint
compressed: 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]
&self,
message: &[u8],
signature: &Signature,
context: &[u8]
) -> Result
pub fn verify_prehashed(
&self,
prehashed_message: &[u8; 64],
signature: &Signature,
context: Option<&[u8]>
) -> Result
[src]
&self,
prehashed_message: &[u8; 64],
signature: &Signature,
context: Option<&[u8]>
) -> Result
impl PublicKey
[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.
fn try_from(bytes: &[u8; 32]) -> Result<PublicKey>
[src]
impl Default for PublicKey
[src]
Auto Trait Implementations
Blanket Implementations
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,