1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
use libp2p::core::PeerId;
use std::{collections::hash_map::DefaultHasher, hash::Hasher};
pub type PeerRepresentation = u64;
pub fn peer_to_hash(peer_id: &PeerId) -> PeerRepresentation {
let mut hasher = DefaultHasher::default();
hasher.write(&peer_id.to_bytes());
hasher.finish()
}
pub fn peer_to_hash_string(peer_id: &PeerId) -> String {
std::format!("{:x?}", peer_to_hash(peer_id))
}
pub fn peer_hash_to_string(peer: &PeerRepresentation) -> String {
std::format!("{:x?}", peer)
}