├── .gitignore ├── README.rst ├── mypy.ini ├── pindeps ├── pindeps.bat ├── pyproject.toml ├── requirements.txt ├── requirements.windows.txt └── src └── tokenring ├── __init__.py ├── agent ├── _admin_pipe.py ├── client.py └── common.py ├── cli.py ├── fidoclient.py ├── handles.py ├── interaction.py ├── local.py └── vault.py /.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | /dist 3 | *.tokenvault 4 | -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glyph/tokenring/HEAD/README.rst -------------------------------------------------------------------------------- /mypy.ini: -------------------------------------------------------------------------------- 1 | [mypy] 2 | -------------------------------------------------------------------------------- /pindeps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glyph/tokenring/HEAD/pindeps -------------------------------------------------------------------------------- /pindeps.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glyph/tokenring/HEAD/pindeps.bat -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glyph/tokenring/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glyph/tokenring/HEAD/requirements.txt -------------------------------------------------------------------------------- /requirements.windows.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glyph/tokenring/HEAD/requirements.windows.txt -------------------------------------------------------------------------------- /src/tokenring/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/tokenring/agent/_admin_pipe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glyph/tokenring/HEAD/src/tokenring/agent/_admin_pipe.py -------------------------------------------------------------------------------- /src/tokenring/agent/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glyph/tokenring/HEAD/src/tokenring/agent/client.py -------------------------------------------------------------------------------- /src/tokenring/agent/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glyph/tokenring/HEAD/src/tokenring/agent/common.py -------------------------------------------------------------------------------- /src/tokenring/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glyph/tokenring/HEAD/src/tokenring/cli.py -------------------------------------------------------------------------------- /src/tokenring/fidoclient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glyph/tokenring/HEAD/src/tokenring/fidoclient.py -------------------------------------------------------------------------------- /src/tokenring/handles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glyph/tokenring/HEAD/src/tokenring/handles.py -------------------------------------------------------------------------------- /src/tokenring/interaction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glyph/tokenring/HEAD/src/tokenring/interaction.py -------------------------------------------------------------------------------- /src/tokenring/local.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glyph/tokenring/HEAD/src/tokenring/local.py -------------------------------------------------------------------------------- /src/tokenring/vault.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glyph/tokenring/HEAD/src/tokenring/vault.py --------------------------------------------------------------------------------