Struct libp2p_pnet::PreSharedKey [−][src]
pub struct PreSharedKey(_);
A pre-shared key, consisting of 32 bytes of random data.
Implementations
impl PreSharedKey
[src]
impl PreSharedKey
[src]pub fn new(data: [u8; 32]) -> Self
[src]
Create a new pre shared key from raw bytes
pub fn fingerprint(&self) -> Fingerprint
[src]
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
impl Clone for PreSharedKey
[src]
impl Clone for PreSharedKey
[src]fn clone(&self) -> PreSharedKey
[src]
pub fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Display for PreSharedKey
[src]
impl Display for PreSharedKey
[src]Dumps a PreSharedKey in key file format compatible with go-libp2p
impl FromStr for PreSharedKey
[src]
impl FromStr for PreSharedKey
[src]Parses a PreSharedKey from a key file
currently supports only base16 encoding.
impl PartialEq<PreSharedKey> for PreSharedKey
[src]
impl PartialEq<PreSharedKey> for PreSharedKey
[src]