py-libp2p/libp2p/peer/id.py

79 lines
2.1 KiB
Python
Raw Normal View History

2019-07-28 22:30:51 +08:00
import hashlib
2019-08-01 06:00:12 +08:00
from typing import Union
2019-07-27 16:27:01 +08:00
2018-11-19 00:22:56 +08:00
import base58
import multihash
from libp2p.crypto.keys import PublicKey
# NOTE: ``FRIENDLY_IDS`` renders a ``str`` representation of ``ID`` as a
# short string of a prefix of the base58 representation. This feature is primarily
# intended for debugging, logging, etc.
FRIENDLY_IDS = True
2018-11-19 00:22:56 +08:00
class ID:
2019-07-31 19:26:13 +08:00
_bytes: bytes
_xor_id: int = None
_b58_str: str = None
2019-07-27 16:27:01 +08:00
2019-07-31 19:26:13 +08:00
def __init__(self, peer_id_bytes: bytes) -> None:
self._bytes = peer_id_bytes
2018-11-19 00:22:56 +08:00
2019-07-31 19:26:13 +08:00
@property
def xor_id(self) -> int:
if not self._xor_id:
self._xor_id = int(digest(self._bytes).hex(), 16)
return self._xor_id
2019-07-31 19:26:13 +08:00
def to_bytes(self) -> bytes:
return self._bytes
def to_base58(self) -> str:
if not self._b58_str:
self._b58_str = base58.b58encode(self._bytes).decode()
return self._b58_str
2019-08-14 09:18:29 +08:00
def __repr__(self) -> str:
return "<libp2p.peer.id.ID 0x" + self._bytes.hex() + ">"
2018-11-19 00:22:56 +08:00
pretty = to_string = to_base58
def __str__(self) -> str:
if FRIENDLY_IDS:
2019-08-28 21:43:34 +08:00
return f"<peer.ID {self.to_string()[2:8]}>"
else:
return self.to_string()
2019-07-27 16:27:01 +08:00
def __eq__(self, other: object) -> bool:
if isinstance(other, str):
return self.to_base58() == other
elif isinstance(other, bytes):
2019-07-31 19:26:13 +08:00
return self._bytes == other
elif isinstance(other, ID):
return self._bytes == other._bytes
else:
2019-07-27 16:27:01 +08:00
return NotImplemented
2019-07-27 16:27:01 +08:00
def __hash__(self) -> int:
2019-07-31 19:26:13 +08:00
return hash(self._bytes)
@classmethod
def from_base58(cls, b58_encoded_peer_id_str: str) -> "ID":
peer_id_bytes = base58.b58decode(b58_encoded_peer_id_str)
pid = ID(peer_id_bytes)
return pid
@classmethod
def from_pubkey(cls, key: PublicKey) -> "ID":
serialized_key = key.serialize()
algo = multihash.Func.sha2_256
mh_digest = multihash.digest(serialized_key, algo)
return cls(mh_digest.encode())
2019-07-27 16:27:01 +08:00
def digest(data: Union[str, bytes]) -> bytes:
2019-07-30 23:41:28 +08:00
if isinstance(data, str):
2019-08-01 06:00:12 +08:00
data = data.encode("utf8")
2019-07-29 12:42:13 +08:00
return hashlib.sha1(data).digest()