[][src]Struct keynesis::key::ed25519::PublicKey

pub struct PublicKey(_);

Ed25519 Public Key

Can safely be shared publicly, everyone with this key can:

  • verify a signature generated by the associate SecretKey;
  • establish a Diffie-Hellman key exchange (using curve25519)

Implementations

impl PublicKey[src]

pub const SIZE: usize[src]

pub fn verify<T: AsRef<[u8]>>(&self, msg: T, signature: &Signature) -> bool[src]

verify the Signature with the original message

this function will verify that only the associated SecretKey generated the Signature with the original message (non repudiation).

Trait Implementations

impl AsRef<[u8]> for PublicKey[src]

impl AsRef<PublicKey> for PublicKey[src]

impl Clone for PublicKey[src]

impl Copy for PublicKey[src]

impl Debug for PublicKey[src]

impl Display for PublicKey[src]

impl Eq for PublicKey[src]

impl From<[u8; 32]> for PublicKey[src]

impl FromStr for PublicKey[src]

type Err = FromHexError

The associated error which can be returned from parsing.

impl Hash for PublicKey[src]

impl Into<[u8; 32]> for PublicKey[src]

impl Ord for PublicKey[src]

impl PartialEq<PublicKey> for PublicKey[src]

impl PartialOrd<PublicKey> for PublicKey[src]

impl<'a> TryFrom<&'a [u8]> for PublicKey[src]

type Error = PublicKeyError

The type returned in the event of a conversion error.

Auto Trait Implementations

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> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToHex for T where
    T: AsRef<[u8]>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[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> 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<V, T> VZip<V> for T where
    V: MultiLane<T>,