Onionr/static-data/official-plugins/wot/wot/__init__.py

10 lines
346 B
Python
Raw Normal View History

2022-08-18 05:12:01 +00:00
# The web of trust is a graph of identities where each edge is a signature
# of a byte representing a trust level and an identity's public key
from typing import TYPE_CHECKING, Set
from .identity import Identity
from .getbykey import get_identity_by_key
2022-09-17 05:02:49 +00:00
from .identity import identities
from .identity.identityset import serialize_identity_set
2022-11-22 05:57:14 +00:00