[][src]Struct ethkey::PublicKey

pub struct PublicKey { /* fields omitted */ }

Represents public part of the Ethereum key.

Methods

impl PublicKey[src]

pub fn from_slice(slice: &[u8]) -> Result<PublicKey, ()>[src]

Create a public key from given slice of 65 bytes.

Returns an error if the length does not match.

pub fn bytes(&self) -> &[u8; 64][src]

Returns public key bytes.

pub fn address(&self) -> &[u8; 20][src]

Returns the ethereum address associated with this public key.

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

Checks ECDSA validity of signature for message with this public key. Returns Ok(true) on success.

Trait Implementations

impl Debug for PublicKey[src]

Auto Trait Implementations

impl Send for PublicKey

impl Sync for PublicKey

Blanket Implementations

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

impl<T> From for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto 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> Any for T where
    T: 'static + ?Sized
[src]