Skip to content

Class swarmauri_core.pop.ipop.KeyResolver

swarmauri_core.pop.ipop.KeyResolver

Bases: Protocol

Protocol for resolving verification keys by kid or binding.

by_kid

by_kid(kid)
Source code in swarmauri_core/pop/ipop.py
21
def by_kid(self, kid: bytes) -> object | None: ...

by_thumb

by_thumb(bind)
Source code in swarmauri_core/pop/ipop.py
23
def by_thumb(self, bind: CnfBinding) -> object | None: ...