Struct libp2p_pnet::PreSharedKey
source · pub struct PreSharedKey(_);
Expand description
A pre-shared key, consisting of 32 bytes of random data.
Implementations§
sourcepub fn fingerprint(&self) -> Fingerprint
pub fn fingerprint(&self) -> Fingerprint
Compute PreSharedKey fingerprint identical to the go-libp2p fingerprint. The computation of the fingerprint is not specified in the spec.
This provides a way to check that private keys are properly configured without dumping the key itself to the console.
Trait Implementations§
source§fn clone(&self) -> PreSharedKey
fn clone(&self) -> PreSharedKey
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreDumps a PreSharedKey in key file format compatible with go-libp2p
Parses a PreSharedKey from a key file
currently supports only base16 encoding.
source§fn eq(&self, other: &PreSharedKey) -> bool
fn eq(&self, other: &PreSharedKey) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.