[][src]Enum libp2p_core::PublicKey

pub enum PublicKey {
    Rsa(Vec<u8>),
    Ed25519(Vec<u8>),
    Secp256k1(Vec<u8>),
}

Public key used by the remote.

Variants

Rsa(Vec<u8>)

DER format.

Ed25519(Vec<u8>)

Format = ???

Secp256k1(Vec<u8>)

Format = ???

Methods

impl PublicKey
[src]

pub fn into_protobuf_encoding(self) -> Vec<u8>
[src]

Encodes the public key as a protobuf message.

Used at various locations in the wire protocol of libp2p.

pub fn from_protobuf_encoding(bytes: &[u8]) -> Result<PublicKey, IoError>
[src]

Decodes the public key from a protobuf message.

Used at various locations in the wire protocol of libp2p.

pub fn into_peer_id(self) -> PeerId
[src]

Builds a PeerId corresponding to the public key of the node.

Trait Implementations

impl Clone for PublicKey
[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl From<PublicKey> for PeerId
[src]

impl Eq for PublicKey
[src]

impl PartialEq<PublicKey> for PublicKey
[src]

impl Debug for PublicKey
[src]

Auto Trait Implementations

impl Send for PublicKey

impl Sync for PublicKey

Blanket Implementations

impl<T> From for T
[src]

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

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

type Owned = T

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Same for T

type Output = T

Should always be Self

impl<T> Erased for T