Struct libp2p::pnet::PreSharedKey
source · pub struct PreSharedKey(_);
Expand description
A pre-shared key, consisting of 32 bytes of random data.
Implementations§
sourcepub fn new(data: [u8; 32]) -> PreSharedKey
pub fn new(data: [u8; 32]) -> PreSharedKey
Create a new pre shared key from raw bytes
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.
§type Err = KeyParseError
type Err = KeyParseError
The associated error which can be returned from parsing.
source§fn from_str(s: &str) -> Result<PreSharedKey, <PreSharedKey as FromStr>::Err>
fn from_str(s: &str) -> Result<PreSharedKey, <PreSharedKey as FromStr>::Err>
Parses a string
s
to return a value of this type. Read more