ciphertoken 0.1.5__tar.gz → 0.1.7__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- ciphertoken-0.1.7/.github/workflows/docs.yml +29 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/Cargo.lock +1 -1
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/Cargo.toml +1 -1
- ciphertoken-0.1.7/PKG-INFO +81 -0
- ciphertoken-0.1.7/README.md +67 -0
- ciphertoken-0.1.7/ciphertoken/__init__.py +51 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/ciphertoken/__init__.pyi +4 -0
- ciphertoken-0.1.7/ciphertoken/algorithms.py +18 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/ciphertoken/ciphertoken.pyi +7 -6
- ciphertoken-0.1.7/ciphertoken/jwt.py +25 -0
- ciphertoken-0.1.7/ciphertoken/jwt.pyi +13 -0
- ciphertoken-0.1.7/ciphertoken/secret.py +17 -0
- ciphertoken-0.1.7/ciphertoken/time.py +12 -0
- ciphertoken-0.1.7/ciphertoken/utils.py +10 -0
- ciphertoken-0.1.7/docs/advanced/async.md +163 -0
- ciphertoken-0.1.7/docs/advanced/index.md +17 -0
- ciphertoken-0.1.7/docs/advanced/security.md +154 -0
- ciphertoken-0.1.7/docs/getting-started/index.md +57 -0
- ciphertoken-0.1.7/docs/getting-started/installation.md +106 -0
- ciphertoken-0.1.7/docs/getting-started/quick-start.md +132 -0
- ciphertoken-0.1.7/docs/reference/algorithms.md +67 -0
- ciphertoken-0.1.7/docs/reference/api-lookup.md +94 -0
- ciphertoken-0.1.7/docs/reference/ciphertoken.md +188 -0
- ciphertoken-0.1.7/docs/reference/index.md +26 -0
- ciphertoken-0.1.7/docs/reference/jwt.md +123 -0
- ciphertoken-0.1.7/docs/reference/secret.md +95 -0
- ciphertoken-0.1.7/docs/reference/time.md +46 -0
- ciphertoken-0.1.7/docs/reference/utils.md +23 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/pyproject.toml +1 -1
- ciphertoken-0.1.7/site/404.html +499 -0
- ciphertoken-0.1.7/site/advanced/async/index.html +776 -0
- ciphertoken-0.1.7/site/advanced/index.html +666 -0
- ciphertoken-0.1.7/site/advanced/security/index.html +791 -0
- ciphertoken-0.1.7/site/assets/images/favicon.png +0 -0
- ciphertoken-0.1.7/site/assets/javascripts/LICENSE +29 -0
- ciphertoken-0.1.7/site/assets/javascripts/bundle.6e5f0216.min.js +3 -0
- ciphertoken-0.1.7/site/assets/javascripts/workers/search.e2d2d235.min.js +1 -0
- ciphertoken-0.1.7/site/assets/stylesheets/classic/main.a2001754.min.css +1 -0
- ciphertoken-0.1.7/site/assets/stylesheets/classic/palette.7dc9a0ad.min.css +1 -0
- ciphertoken-0.1.7/site/assets/stylesheets/modern/main.fba56155.min.css +1 -0
- ciphertoken-0.1.7/site/assets/stylesheets/modern/palette.dfe2e883.min.css +1 -0
- ciphertoken-0.1.7/site/getting-started/index.html +798 -0
- ciphertoken-0.1.7/site/getting-started/installation/index.html +811 -0
- ciphertoken-0.1.7/site/getting-started/quick-start/index.html +982 -0
- ciphertoken-0.1.7/site/objects.inv +0 -0
- ciphertoken-0.1.7/site/reference/algorithms/index.html +777 -0
- ciphertoken-0.1.7/site/reference/api-lookup/index.html +925 -0
- ciphertoken-0.1.7/site/reference/ciphertoken/index.html +813 -0
- ciphertoken-0.1.7/site/reference/index.html +631 -0
- ciphertoken-0.1.7/site/reference/jwt/index.html +760 -0
- ciphertoken-0.1.7/site/reference/secret/index.html +718 -0
- ciphertoken-0.1.7/site/reference/time/index.html +636 -0
- ciphertoken-0.1.7/site/reference/utils/index.html +600 -0
- ciphertoken-0.1.7/site/search.json +1 -0
- ciphertoken-0.1.7/site/sitemap.xml +18 -0
- ciphertoken-0.1.7/src/jwt.rs +98 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/src/lib.rs +70 -94
- ciphertoken-0.1.7/zensical.toml +313 -0
- ciphertoken-0.1.5/PKG-INFO +0 -171
- ciphertoken-0.1.5/README.md +0 -157
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.github/workflows/build.yml +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.gitignore +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/bin/Activate.ps1 +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/bin/activate +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/bin/activate.csh +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/bin/activate.fish +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/bin/pip +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/bin/pip3 +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/bin/pip3.12 +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/__init__.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/__main__.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/__pip-runner__.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_internal/__init__.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_internal/build_env.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_internal/cache.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_internal/cli/__init__.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_internal/cli/autocompletion.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_internal/cli/base_command.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_internal/cli/cmdoptions.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_internal/cli/command_context.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_internal/cli/index_command.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_internal/cli/main.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_internal/cli/main_parser.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_internal/cli/parser.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_internal/cli/progress_bars.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_internal/cli/req_command.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_internal/cli/spinners.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_internal/cli/status_codes.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_internal/commands/__init__.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_internal/commands/cache.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_internal/commands/check.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_internal/commands/completion.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_internal/commands/configuration.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_internal/commands/debug.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_internal/commands/download.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_internal/commands/freeze.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_internal/commands/hash.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_internal/commands/help.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_internal/commands/index.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_internal/commands/inspect.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_internal/commands/install.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_internal/commands/list.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_internal/commands/search.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_internal/commands/show.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_internal/commands/uninstall.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_internal/commands/wheel.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_internal/configuration.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_internal/distributions/__init__.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_internal/distributions/base.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_internal/distributions/installed.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_internal/distributions/sdist.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_internal/distributions/wheel.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_internal/exceptions.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_internal/index/__init__.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_internal/index/collector.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_internal/index/package_finder.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_internal/index/sources.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_internal/locations/__init__.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_internal/locations/_distutils.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_internal/locations/_sysconfig.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_internal/locations/base.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_internal/main.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_internal/metadata/__init__.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_internal/metadata/_json.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_internal/metadata/base.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_internal/metadata/importlib/__init__.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_internal/metadata/importlib/_compat.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_internal/metadata/importlib/_dists.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_internal/metadata/importlib/_envs.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_internal/metadata/pkg_resources.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_internal/models/__init__.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_internal/models/candidate.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_internal/models/direct_url.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_internal/models/format_control.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_internal/models/index.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_internal/models/installation_report.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_internal/models/link.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_internal/models/scheme.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_internal/models/search_scope.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_internal/models/selection_prefs.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_internal/models/target_python.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_internal/models/wheel.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_internal/network/__init__.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_internal/network/auth.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_internal/network/cache.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_internal/network/download.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_internal/network/lazy_wheel.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_internal/network/session.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_internal/network/utils.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_internal/network/xmlrpc.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_internal/operations/__init__.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_internal/operations/build/__init__.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_internal/operations/build/build_tracker.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_internal/operations/build/metadata.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_internal/operations/build/metadata_editable.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_internal/operations/build/metadata_legacy.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_internal/operations/build/wheel.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_internal/operations/build/wheel_editable.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_internal/operations/build/wheel_legacy.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_internal/operations/check.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_internal/operations/freeze.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_internal/operations/install/__init__.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_internal/operations/install/editable_legacy.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_internal/operations/install/wheel.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_internal/operations/prepare.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_internal/pyproject.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_internal/req/__init__.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_internal/req/constructors.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_internal/req/req_file.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_internal/req/req_install.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_internal/req/req_set.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_internal/req/req_uninstall.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_internal/resolution/__init__.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_internal/resolution/base.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_internal/resolution/legacy/__init__.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_internal/resolution/legacy/resolver.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__init__.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/base.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/candidates.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/factory.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/found_candidates.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/provider.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/reporter.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/requirements.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/resolver.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_internal/self_outdated_check.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_internal/utils/__init__.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_internal/utils/_jaraco_text.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_internal/utils/_log.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_internal/utils/appdirs.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_internal/utils/compat.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_internal/utils/compatibility_tags.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_internal/utils/datetime.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_internal/utils/deprecation.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_internal/utils/direct_url_helpers.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_internal/utils/egg_link.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_internal/utils/entrypoints.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_internal/utils/filesystem.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_internal/utils/filetypes.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_internal/utils/glibc.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_internal/utils/hashes.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_internal/utils/logging.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_internal/utils/misc.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_internal/utils/packaging.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_internal/utils/retry.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_internal/utils/setuptools_build.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_internal/utils/subprocess.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_internal/utils/temp_dir.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_internal/utils/unpacking.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_internal/utils/urls.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_internal/utils/virtualenv.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_internal/utils/wheel.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_internal/vcs/__init__.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_internal/vcs/bazaar.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_internal/vcs/git.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_internal/vcs/mercurial.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_internal/vcs/subversion.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_internal/vcs/versioncontrol.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_internal/wheel_builder.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/__init__.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__init__.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/cachecontrol/_cmd.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/cachecontrol/adapter.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/cachecontrol/cache.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/__init__.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/file_cache.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/redis_cache.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/cachecontrol/controller.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/cachecontrol/filewrapper.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/cachecontrol/heuristics.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/cachecontrol/py.typed +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/cachecontrol/serialize.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/cachecontrol/wrapper.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/certifi/__init__.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/certifi/__main__.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/certifi/cacert.pem +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/certifi/core.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/certifi/py.typed +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/distlib/__init__.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/distlib/compat.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/distlib/database.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/distlib/index.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/distlib/locators.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/distlib/manifest.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/distlib/markers.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/distlib/metadata.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/distlib/resources.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/distlib/scripts.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/distlib/t32.exe +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/distlib/t64-arm.exe +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/distlib/t64.exe +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/distlib/util.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/distlib/version.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/distlib/w32.exe +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/distlib/w64-arm.exe +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/distlib/w64.exe +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/distlib/wheel.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/distro/__init__.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/distro/__main__.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/distro/distro.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/distro/py.typed +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/idna/__init__.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/idna/codec.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/idna/compat.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/idna/core.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/idna/idnadata.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/idna/intranges.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/idna/package_data.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/idna/py.typed +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/idna/uts46data.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/msgpack/__init__.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/msgpack/exceptions.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/msgpack/ext.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/msgpack/fallback.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/packaging/__init__.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/packaging/_elffile.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/packaging/_manylinux.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/packaging/_musllinux.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/packaging/_parser.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/packaging/_structures.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/packaging/_tokenizer.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/packaging/licenses/__init__.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/packaging/licenses/_spdx.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/packaging/markers.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/packaging/metadata.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/packaging/py.typed +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/packaging/requirements.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/packaging/specifiers.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/packaging/tags.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/packaging/utils.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/packaging/version.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/pkg_resources/__init__.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/platformdirs/__init__.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/platformdirs/__main__.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/platformdirs/android.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/platformdirs/api.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/platformdirs/macos.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/platformdirs/py.typed +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/platformdirs/unix.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/platformdirs/version.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/platformdirs/windows.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/pygments/__init__.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/pygments/__main__.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/pygments/cmdline.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/pygments/console.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/pygments/filter.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/pygments/filters/__init__.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/pygments/formatter.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__init__.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/_mapping.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/bbcode.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/groff.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/html.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/img.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/irc.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/latex.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/other.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/pangomarkup.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/rtf.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/svg.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/terminal.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/terminal256.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/pygments/lexer.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/pygments/lexers/__init__.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/pygments/lexers/_mapping.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/pygments/lexers/python.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/pygments/modeline.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/pygments/plugin.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/pygments/regexopt.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/pygments/scanner.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/pygments/sphinxext.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/pygments/style.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/pygments/styles/__init__.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/pygments/styles/_mapping.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/pygments/token.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/pygments/unistring.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/pygments/util.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/__init__.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/_impl.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/_in_process/__init__.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/_in_process/_in_process.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/py.typed +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/requests/__init__.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/requests/__version__.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/requests/_internal_utils.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/requests/adapters.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/requests/api.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/requests/auth.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/requests/certs.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/requests/compat.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/requests/cookies.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/requests/exceptions.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/requests/help.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/requests/hooks.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/requests/models.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/requests/packages.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/requests/sessions.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/requests/status_codes.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/requests/structures.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/requests/utils.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/resolvelib/__init__.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/resolvelib/compat/__init__.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/resolvelib/compat/collections_abc.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/resolvelib/providers.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/resolvelib/py.typed +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/resolvelib/reporters.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/resolvelib/resolvers.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/resolvelib/structs.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/__init__.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/__main__.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/_cell_widths.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/_emoji_codes.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/_emoji_replace.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/_export_format.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/_extension.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/_fileno.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/_inspect.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/_log_render.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/_loop.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/_null_file.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/_palettes.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/_pick.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/_ratio.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/_spinners.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/_stack.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/_timer.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/_win32_console.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/_windows.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/_windows_renderer.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/_wrap.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/abc.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/align.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/ansi.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/bar.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/box.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/cells.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/color.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/color_triplet.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/columns.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/console.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/constrain.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/containers.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/control.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/default_styles.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/diagnose.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/emoji.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/errors.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/file_proxy.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/filesize.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/highlighter.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/json.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/jupyter.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/layout.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/live.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/live_render.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/logging.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/markup.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/measure.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/padding.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/pager.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/palette.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/panel.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/pretty.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/progress.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/progress_bar.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/prompt.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/protocol.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/py.typed +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/region.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/repr.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/rule.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/scope.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/screen.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/segment.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/spinner.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/status.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/style.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/styled.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/syntax.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/table.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/terminal_theme.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/text.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/theme.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/themes.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/traceback.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/tree.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/tomli/__init__.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/tomli/_parser.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/tomli/_re.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/tomli/_types.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/tomli/py.typed +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/truststore/__init__.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/truststore/_api.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/truststore/_macos.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/truststore/_openssl.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/truststore/_ssl_constants.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/truststore/_windows.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/truststore/py.typed +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/typing_extensions.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/urllib3/__init__.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/urllib3/_collections.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/urllib3/_version.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/urllib3/connection.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/urllib3/connectionpool.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/__init__.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/_appengine_environ.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__init__.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/_securetransport/bindings.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/_securetransport/low_level.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/appengine.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/ntlmpool.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/pyopenssl.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/securetransport.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/socks.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/urllib3/exceptions.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/urllib3/fields.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/urllib3/filepost.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/__init__.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/backports/__init__.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/backports/makefile.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/backports/weakref_finalize.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/six.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/urllib3/poolmanager.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/urllib3/request.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/urllib3/response.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__init__.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/urllib3/util/connection.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/urllib3/util/proxy.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/urllib3/util/queue.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/urllib3/util/request.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/urllib3/util/response.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/urllib3/util/retry.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/urllib3/util/ssl_.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/urllib3/util/ssl_match_hostname.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/urllib3/util/ssltransport.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/urllib3/util/timeout.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/urllib3/util/url.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/urllib3/util/wait.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/_vendor/vendor.txt +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip/py.typed +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip-25.0.1.dist-info/AUTHORS.txt +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip-25.0.1.dist-info/INSTALLER +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip-25.0.1.dist-info/LICENSE.txt +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip-25.0.1.dist-info/METADATA +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip-25.0.1.dist-info/RECORD +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip-25.0.1.dist-info/REQUESTED +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip-25.0.1.dist-info/WHEEL +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip-25.0.1.dist-info/entry_points.txt +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib/python3.12/site-packages/pip-25.0.1.dist-info/top_level.txt +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/__init__.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/__main__.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/__pip-runner__.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_internal/__init__.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_internal/build_env.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_internal/cache.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_internal/cli/__init__.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_internal/cli/autocompletion.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_internal/cli/base_command.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_internal/cli/cmdoptions.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_internal/cli/command_context.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_internal/cli/index_command.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_internal/cli/main.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_internal/cli/main_parser.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_internal/cli/parser.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_internal/cli/progress_bars.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_internal/cli/req_command.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_internal/cli/spinners.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_internal/cli/status_codes.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_internal/commands/__init__.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_internal/commands/cache.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_internal/commands/check.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_internal/commands/completion.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_internal/commands/configuration.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_internal/commands/debug.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_internal/commands/download.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_internal/commands/freeze.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_internal/commands/hash.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_internal/commands/help.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_internal/commands/index.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_internal/commands/inspect.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_internal/commands/install.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_internal/commands/list.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_internal/commands/search.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_internal/commands/show.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_internal/commands/uninstall.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_internal/commands/wheel.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_internal/configuration.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_internal/distributions/__init__.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_internal/distributions/base.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_internal/distributions/installed.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_internal/distributions/sdist.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_internal/distributions/wheel.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_internal/exceptions.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_internal/index/__init__.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_internal/index/collector.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_internal/index/package_finder.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_internal/index/sources.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_internal/locations/__init__.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_internal/locations/_distutils.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_internal/locations/_sysconfig.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_internal/locations/base.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_internal/main.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_internal/metadata/__init__.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_internal/metadata/_json.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_internal/metadata/base.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_internal/metadata/importlib/__init__.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_internal/metadata/importlib/_compat.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_internal/metadata/importlib/_dists.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_internal/metadata/importlib/_envs.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_internal/metadata/pkg_resources.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_internal/models/__init__.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_internal/models/candidate.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_internal/models/direct_url.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_internal/models/format_control.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_internal/models/index.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_internal/models/installation_report.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_internal/models/link.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_internal/models/scheme.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_internal/models/search_scope.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_internal/models/selection_prefs.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_internal/models/target_python.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_internal/models/wheel.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_internal/network/__init__.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_internal/network/auth.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_internal/network/cache.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_internal/network/download.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_internal/network/lazy_wheel.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_internal/network/session.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_internal/network/utils.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_internal/network/xmlrpc.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_internal/operations/__init__.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_internal/operations/build/__init__.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_internal/operations/build/build_tracker.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_internal/operations/build/metadata.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_internal/operations/build/metadata_editable.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_internal/operations/build/metadata_legacy.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_internal/operations/build/wheel.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_internal/operations/build/wheel_editable.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_internal/operations/build/wheel_legacy.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_internal/operations/check.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_internal/operations/freeze.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_internal/operations/install/__init__.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_internal/operations/install/editable_legacy.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_internal/operations/install/wheel.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_internal/operations/prepare.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_internal/pyproject.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_internal/req/__init__.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_internal/req/constructors.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_internal/req/req_file.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_internal/req/req_install.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_internal/req/req_set.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_internal/req/req_uninstall.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_internal/resolution/__init__.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_internal/resolution/base.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_internal/resolution/legacy/__init__.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_internal/resolution/legacy/resolver.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_internal/resolution/resolvelib/__init__.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_internal/resolution/resolvelib/base.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_internal/resolution/resolvelib/candidates.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_internal/resolution/resolvelib/factory.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_internal/resolution/resolvelib/found_candidates.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_internal/resolution/resolvelib/provider.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_internal/resolution/resolvelib/reporter.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_internal/resolution/resolvelib/requirements.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_internal/resolution/resolvelib/resolver.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_internal/self_outdated_check.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_internal/utils/__init__.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_internal/utils/_jaraco_text.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_internal/utils/_log.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_internal/utils/appdirs.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_internal/utils/compat.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_internal/utils/compatibility_tags.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_internal/utils/datetime.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_internal/utils/deprecation.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_internal/utils/direct_url_helpers.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_internal/utils/egg_link.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_internal/utils/entrypoints.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_internal/utils/filesystem.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_internal/utils/filetypes.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_internal/utils/glibc.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_internal/utils/hashes.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_internal/utils/logging.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_internal/utils/misc.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_internal/utils/packaging.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_internal/utils/retry.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_internal/utils/setuptools_build.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_internal/utils/subprocess.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_internal/utils/temp_dir.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_internal/utils/unpacking.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_internal/utils/urls.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_internal/utils/virtualenv.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_internal/utils/wheel.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_internal/vcs/__init__.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_internal/vcs/bazaar.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_internal/vcs/git.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_internal/vcs/mercurial.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_internal/vcs/subversion.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_internal/vcs/versioncontrol.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_internal/wheel_builder.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/__init__.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/cachecontrol/__init__.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/cachecontrol/_cmd.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/cachecontrol/adapter.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/cachecontrol/cache.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/cachecontrol/caches/__init__.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/cachecontrol/caches/file_cache.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/cachecontrol/caches/redis_cache.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/cachecontrol/controller.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/cachecontrol/filewrapper.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/cachecontrol/heuristics.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/cachecontrol/py.typed +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/cachecontrol/serialize.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/cachecontrol/wrapper.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/certifi/__init__.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/certifi/__main__.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/certifi/cacert.pem +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/certifi/core.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/certifi/py.typed +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/distlib/__init__.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/distlib/compat.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/distlib/database.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/distlib/index.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/distlib/locators.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/distlib/manifest.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/distlib/markers.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/distlib/metadata.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/distlib/resources.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/distlib/scripts.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/distlib/t32.exe +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/distlib/t64-arm.exe +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/distlib/t64.exe +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/distlib/util.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/distlib/version.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/distlib/w32.exe +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/distlib/w64-arm.exe +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/distlib/w64.exe +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/distlib/wheel.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/distro/__init__.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/distro/__main__.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/distro/distro.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/distro/py.typed +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/idna/__init__.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/idna/codec.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/idna/compat.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/idna/core.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/idna/idnadata.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/idna/intranges.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/idna/package_data.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/idna/py.typed +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/idna/uts46data.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/msgpack/__init__.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/msgpack/exceptions.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/msgpack/ext.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/msgpack/fallback.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/packaging/__init__.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/packaging/_elffile.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/packaging/_manylinux.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/packaging/_musllinux.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/packaging/_parser.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/packaging/_structures.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/packaging/_tokenizer.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/packaging/licenses/__init__.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/packaging/licenses/_spdx.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/packaging/markers.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/packaging/metadata.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/packaging/py.typed +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/packaging/requirements.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/packaging/specifiers.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/packaging/tags.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/packaging/utils.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/packaging/version.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/pkg_resources/__init__.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/platformdirs/__init__.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/platformdirs/__main__.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/platformdirs/android.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/platformdirs/api.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/platformdirs/macos.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/platformdirs/py.typed +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/platformdirs/unix.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/platformdirs/version.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/platformdirs/windows.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/pygments/__init__.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/pygments/__main__.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/pygments/cmdline.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/pygments/console.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/pygments/filter.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/pygments/filters/__init__.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/pygments/formatter.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/pygments/formatters/__init__.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/pygments/formatters/_mapping.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/pygments/formatters/bbcode.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/pygments/formatters/groff.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/pygments/formatters/html.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/pygments/formatters/img.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/pygments/formatters/irc.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/pygments/formatters/latex.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/pygments/formatters/other.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/pygments/formatters/pangomarkup.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/pygments/formatters/rtf.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/pygments/formatters/svg.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/pygments/formatters/terminal.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/pygments/formatters/terminal256.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/pygments/lexer.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/pygments/lexers/__init__.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/pygments/lexers/_mapping.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/pygments/lexers/python.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/pygments/modeline.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/pygments/plugin.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/pygments/regexopt.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/pygments/scanner.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/pygments/sphinxext.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/pygments/style.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/pygments/styles/__init__.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/pygments/styles/_mapping.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/pygments/token.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/pygments/unistring.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/pygments/util.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/pyproject_hooks/__init__.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/pyproject_hooks/_impl.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/pyproject_hooks/_in_process/__init__.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/pyproject_hooks/_in_process/_in_process.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/pyproject_hooks/py.typed +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/requests/__init__.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/requests/__version__.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/requests/_internal_utils.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/requests/adapters.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/requests/api.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/requests/auth.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/requests/certs.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/requests/compat.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/requests/cookies.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/requests/exceptions.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/requests/help.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/requests/hooks.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/requests/models.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/requests/packages.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/requests/sessions.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/requests/status_codes.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/requests/structures.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/requests/utils.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/resolvelib/__init__.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/resolvelib/compat/__init__.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/resolvelib/compat/collections_abc.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/resolvelib/providers.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/resolvelib/py.typed +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/resolvelib/reporters.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/resolvelib/resolvers.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/resolvelib/structs.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/__init__.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/__main__.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/_cell_widths.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/_emoji_codes.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/_emoji_replace.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/_export_format.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/_extension.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/_fileno.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/_inspect.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/_log_render.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/_loop.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/_null_file.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/_palettes.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/_pick.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/_ratio.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/_spinners.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/_stack.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/_timer.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/_win32_console.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/_windows.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/_windows_renderer.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/_wrap.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/abc.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/align.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/ansi.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/bar.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/box.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/cells.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/color.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/color_triplet.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/columns.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/console.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/constrain.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/containers.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/control.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/default_styles.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/diagnose.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/emoji.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/errors.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/file_proxy.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/filesize.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/highlighter.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/json.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/jupyter.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/layout.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/live.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/live_render.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/logging.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/markup.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/measure.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/padding.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/pager.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/palette.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/panel.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/pretty.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/progress.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/progress_bar.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/prompt.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/protocol.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/py.typed +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/region.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/repr.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/rule.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/scope.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/screen.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/segment.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/spinner.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/status.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/style.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/styled.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/syntax.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/table.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/terminal_theme.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/text.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/theme.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/themes.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/traceback.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/tree.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/tomli/__init__.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/tomli/_parser.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/tomli/_re.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/tomli/_types.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/tomli/py.typed +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/truststore/__init__.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/truststore/_api.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/truststore/_macos.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/truststore/_openssl.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/truststore/_ssl_constants.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/truststore/_windows.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/truststore/py.typed +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/typing_extensions.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/urllib3/__init__.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/urllib3/_collections.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/urllib3/_version.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/urllib3/connection.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/urllib3/connectionpool.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/urllib3/contrib/__init__.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/urllib3/contrib/_appengine_environ.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__init__.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/urllib3/contrib/_securetransport/bindings.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/urllib3/contrib/_securetransport/low_level.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/urllib3/contrib/appengine.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/urllib3/contrib/ntlmpool.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/urllib3/contrib/pyopenssl.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/urllib3/contrib/securetransport.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/urllib3/contrib/socks.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/urllib3/exceptions.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/urllib3/fields.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/urllib3/filepost.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/urllib3/packages/__init__.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/urllib3/packages/backports/__init__.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/urllib3/packages/backports/makefile.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/urllib3/packages/backports/weakref_finalize.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/urllib3/packages/six.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/urllib3/poolmanager.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/urllib3/request.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/urllib3/response.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/urllib3/util/__init__.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/urllib3/util/connection.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/urllib3/util/proxy.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/urllib3/util/queue.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/urllib3/util/request.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/urllib3/util/response.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/urllib3/util/retry.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/urllib3/util/ssl_.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/urllib3/util/ssl_match_hostname.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/urllib3/util/ssltransport.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/urllib3/util/timeout.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/urllib3/util/url.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/urllib3/util/wait.py +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/vendor.txt +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip/py.typed +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip-25.0.1.dist-info/AUTHORS.txt +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip-25.0.1.dist-info/INSTALLER +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip-25.0.1.dist-info/LICENSE.txt +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip-25.0.1.dist-info/METADATA +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip-25.0.1.dist-info/RECORD +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip-25.0.1.dist-info/REQUESTED +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip-25.0.1.dist-info/WHEEL +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip-25.0.1.dist-info/entry_points.txt +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/lib64/python3.12/site-packages/pip-25.0.1.dist-info/top_level.txt +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/.venv-py312/pyvenv.cfg +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/ciphertoken/algorithms.pyi +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/ciphertoken/secret.pyi +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/ciphertoken/time.pyi +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/ciphertoken/utils.pyi +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/logo.png +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/src/algorithms.rs +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/src/secret.rs +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/src/time.rs +0 -0
- {ciphertoken-0.1.5 → ciphertoken-0.1.7}/src/utils.rs +0 -0
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
name: Documentation
|
|
2
|
+
on:
|
|
3
|
+
push:
|
|
4
|
+
branches:
|
|
5
|
+
- master
|
|
6
|
+
- main
|
|
7
|
+
permissions:
|
|
8
|
+
contents: read
|
|
9
|
+
pages: write
|
|
10
|
+
id-token: write
|
|
11
|
+
jobs:
|
|
12
|
+
deploy:
|
|
13
|
+
environment:
|
|
14
|
+
name: github-pages
|
|
15
|
+
url: ${{ steps.deployment.outputs.page_url }}
|
|
16
|
+
runs-on: ubuntu-latest
|
|
17
|
+
steps:
|
|
18
|
+
- uses: actions/configure-pages@v6
|
|
19
|
+
- uses: actions/checkout@v6
|
|
20
|
+
- uses: actions/setup-python@v6
|
|
21
|
+
with:
|
|
22
|
+
python-version: 3.x
|
|
23
|
+
- run: pip install zensical
|
|
24
|
+
- run: zensical build --clean
|
|
25
|
+
- uses: actions/upload-pages-artifact@v5
|
|
26
|
+
with:
|
|
27
|
+
path: site
|
|
28
|
+
- uses: actions/deploy-pages@v5
|
|
29
|
+
id: deployment
|
|
@@ -0,0 +1,81 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: ciphertoken
|
|
3
|
+
Version: 0.1.7
|
|
4
|
+
Classifier: Programming Language :: Python :: 3
|
|
5
|
+
Classifier: Programming Language :: Python :: 3 :: Only
|
|
6
|
+
Classifier: Programming Language :: Rust
|
|
7
|
+
Classifier: Operating System :: OS Independent
|
|
8
|
+
Summary: High-performance token and crypto utilities written in Rust with PyO3
|
|
9
|
+
Author: Cipher-Unit
|
|
10
|
+
License: MIT
|
|
11
|
+
Requires-Python: >=3.8
|
|
12
|
+
Description-Content-Type: text/markdown; charset=UTF-8; variant=GFM
|
|
13
|
+
|
|
14
|
+
<img src="https://github.com/cipherunits/CipherToken/blob/main/logo.png" width=100>
|
|
15
|
+
|
|
16
|
+
# CipherToken
|
|
17
|
+
|
|
18
|
+
**CipherToken** is a **next-generation** token engine built for developers who demand speed, security, and reliability. Currently focused on **JWT**, it provides a complete token lifecycle — from key generation and token minting to verification, rotation, and expiry tracking — all backed by the raw performance of **Rust**.
|
|
19
|
+
|
|
20
|
+
- Python 3.8+
|
|
21
|
+
- HMAC, RSA, ECDSA, RSA-PSS, EdDSA
|
|
22
|
+
- Sync and Async APIs via **Tokio**
|
|
23
|
+
|
|
24
|
+
Built by **[Cipher-Unit](https://cipherunit.xyz/)**.
|
|
25
|
+
|
|
26
|
+
---
|
|
27
|
+
|
|
28
|
+
## Documentation
|
|
29
|
+
|
|
30
|
+
📖 **Official Documentation:** [https://cipherunits.github.io/CipherToken/](https://cipherunits.github.io/CipherToken/)
|
|
31
|
+
|
|
32
|
+
---
|
|
33
|
+
|
|
34
|
+
## Installation
|
|
35
|
+
|
|
36
|
+
```bash
|
|
37
|
+
pip install ciphertoken
|
|
38
|
+
```
|
|
39
|
+
|
|
40
|
+
---
|
|
41
|
+
|
|
42
|
+
## Quick Example
|
|
43
|
+
|
|
44
|
+
```python
|
|
45
|
+
from ciphertoken import CipherToken
|
|
46
|
+
from ciphertoken.algorithms import HS256
|
|
47
|
+
from ciphertoken.time import minutes, days
|
|
48
|
+
from ciphertoken.jwt import access, refresh, rotation
|
|
49
|
+
|
|
50
|
+
token = CipherToken(
|
|
51
|
+
secret="your-strong-secret-key",
|
|
52
|
+
algorithm=HS256,
|
|
53
|
+
access_ttl=minutes(10),
|
|
54
|
+
refresh_ttl=days(7),
|
|
55
|
+
)
|
|
56
|
+
|
|
57
|
+
access_token = access(token, payload={"user_id": 42})
|
|
58
|
+
refresh_token = refresh(token, payload={"user_id": 42})
|
|
59
|
+
new_access, new_refresh = rotation(token, refresh_token)
|
|
60
|
+
|
|
61
|
+
print(token.verify(access_token)) # True
|
|
62
|
+
print(token.decode(access_token))
|
|
63
|
+
```
|
|
64
|
+
|
|
65
|
+
---
|
|
66
|
+
|
|
67
|
+
## Contribute
|
|
68
|
+
|
|
69
|
+
Contributions are welcome! Whether it's bug fixes, new algorithms, documentation improvements, or feature suggestions — feel free to open an issue or pull request.
|
|
70
|
+
|
|
71
|
+
- **Repository:** [https://github.com/cipherunits/CipherToken](https://github.com/cipherunits/CipherToken)
|
|
72
|
+
- **Issues:** [https://github.com/cipherunits/CipherToken/issues](https://github.com/cipherunits/CipherToken/issues)
|
|
73
|
+
|
|
74
|
+
Please read the code of conduct and contribution guidelines before submitting. All contributions must follow the MIT license.
|
|
75
|
+
|
|
76
|
+
---
|
|
77
|
+
|
|
78
|
+
## License
|
|
79
|
+
|
|
80
|
+
**MIT** — see [LICENSE](LICENSE) for details.
|
|
81
|
+
|
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
<img src="https://github.com/cipherunits/CipherToken/blob/main/logo.png" width=100>
|
|
2
|
+
|
|
3
|
+
# CipherToken
|
|
4
|
+
|
|
5
|
+
**CipherToken** is a **next-generation** token engine built for developers who demand speed, security, and reliability. Currently focused on **JWT**, it provides a complete token lifecycle — from key generation and token minting to verification, rotation, and expiry tracking — all backed by the raw performance of **Rust**.
|
|
6
|
+
|
|
7
|
+
- Python 3.8+
|
|
8
|
+
- HMAC, RSA, ECDSA, RSA-PSS, EdDSA
|
|
9
|
+
- Sync and Async APIs via **Tokio**
|
|
10
|
+
|
|
11
|
+
Built by **[Cipher-Unit](https://cipherunit.xyz/)**.
|
|
12
|
+
|
|
13
|
+
---
|
|
14
|
+
|
|
15
|
+
## Documentation
|
|
16
|
+
|
|
17
|
+
📖 **Official Documentation:** [https://cipherunits.github.io/CipherToken/](https://cipherunits.github.io/CipherToken/)
|
|
18
|
+
|
|
19
|
+
---
|
|
20
|
+
|
|
21
|
+
## Installation
|
|
22
|
+
|
|
23
|
+
```bash
|
|
24
|
+
pip install ciphertoken
|
|
25
|
+
```
|
|
26
|
+
|
|
27
|
+
---
|
|
28
|
+
|
|
29
|
+
## Quick Example
|
|
30
|
+
|
|
31
|
+
```python
|
|
32
|
+
from ciphertoken import CipherToken
|
|
33
|
+
from ciphertoken.algorithms import HS256
|
|
34
|
+
from ciphertoken.time import minutes, days
|
|
35
|
+
from ciphertoken.jwt import access, refresh, rotation
|
|
36
|
+
|
|
37
|
+
token = CipherToken(
|
|
38
|
+
secret="your-strong-secret-key",
|
|
39
|
+
algorithm=HS256,
|
|
40
|
+
access_ttl=minutes(10),
|
|
41
|
+
refresh_ttl=days(7),
|
|
42
|
+
)
|
|
43
|
+
|
|
44
|
+
access_token = access(token, payload={"user_id": 42})
|
|
45
|
+
refresh_token = refresh(token, payload={"user_id": 42})
|
|
46
|
+
new_access, new_refresh = rotation(token, refresh_token)
|
|
47
|
+
|
|
48
|
+
print(token.verify(access_token)) # True
|
|
49
|
+
print(token.decode(access_token))
|
|
50
|
+
```
|
|
51
|
+
|
|
52
|
+
---
|
|
53
|
+
|
|
54
|
+
## Contribute
|
|
55
|
+
|
|
56
|
+
Contributions are welcome! Whether it's bug fixes, new algorithms, documentation improvements, or feature suggestions — feel free to open an issue or pull request.
|
|
57
|
+
|
|
58
|
+
- **Repository:** [https://github.com/cipherunits/CipherToken](https://github.com/cipherunits/CipherToken)
|
|
59
|
+
- **Issues:** [https://github.com/cipherunits/CipherToken/issues](https://github.com/cipherunits/CipherToken/issues)
|
|
60
|
+
|
|
61
|
+
Please read the code of conduct and contribution guidelines before submitting. All contributions must follow the MIT license.
|
|
62
|
+
|
|
63
|
+
---
|
|
64
|
+
|
|
65
|
+
## License
|
|
66
|
+
|
|
67
|
+
**MIT** — see [LICENSE](LICENSE) for details.
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
"""Public Python API for ciphertoken."""
|
|
2
|
+
|
|
3
|
+
from .algorithms import EDDSA, ES256, ES384, HS256, HS384, HS512, PS256, PS384, PS512, RS256, RS384, RS512
|
|
4
|
+
from .ciphertoken import CipherToken, is_jwt_format, validate_jwt_format
|
|
5
|
+
from .jwt import TOKEN_ACCESS as JWT_TOKEN_ACCESS, TOKEN_REFRESH as JWT_TOKEN_REFRESH
|
|
6
|
+
from .jwt import access as jwt_access, refresh as jwt_refresh, rotation as jwt_rotation
|
|
7
|
+
from .jwt import access_async as jwt_access_async, refresh_async as jwt_refresh_async, rotation_async as jwt_rotation_async
|
|
8
|
+
from .secret import generate_hmac_secret, generate_hmac_secret_async, generate_rsa_keypair, secret_key, secret_key_with_size
|
|
9
|
+
from .time import days, hours, minutes, now, seconds, weeks
|
|
10
|
+
from .utils import DEFAULT_SECRET_SIZE, MIN_SECRET_SIZE, TOKEN_ACCESS, TOKEN_REFRESH
|
|
11
|
+
|
|
12
|
+
__all__ = [
|
|
13
|
+
"CipherToken",
|
|
14
|
+
"is_jwt_format",
|
|
15
|
+
"validate_jwt_format",
|
|
16
|
+
"EDDSA",
|
|
17
|
+
"ES256",
|
|
18
|
+
"ES384",
|
|
19
|
+
"HS256",
|
|
20
|
+
"HS384",
|
|
21
|
+
"HS512",
|
|
22
|
+
"PS256",
|
|
23
|
+
"PS384",
|
|
24
|
+
"PS512",
|
|
25
|
+
"RS256",
|
|
26
|
+
"RS384",
|
|
27
|
+
"RS512",
|
|
28
|
+
"JWT_TOKEN_ACCESS",
|
|
29
|
+
"JWT_TOKEN_REFRESH",
|
|
30
|
+
"jwt_access",
|
|
31
|
+
"jwt_refresh",
|
|
32
|
+
"jwt_rotation",
|
|
33
|
+
"jwt_access_async",
|
|
34
|
+
"jwt_refresh_async",
|
|
35
|
+
"jwt_rotation_async",
|
|
36
|
+
"generate_hmac_secret",
|
|
37
|
+
"generate_hmac_secret_async",
|
|
38
|
+
"generate_rsa_keypair",
|
|
39
|
+
"secret_key",
|
|
40
|
+
"secret_key_with_size",
|
|
41
|
+
"days",
|
|
42
|
+
"hours",
|
|
43
|
+
"minutes",
|
|
44
|
+
"now",
|
|
45
|
+
"seconds",
|
|
46
|
+
"weeks",
|
|
47
|
+
"DEFAULT_SECRET_SIZE",
|
|
48
|
+
"MIN_SECRET_SIZE",
|
|
49
|
+
"TOKEN_ACCESS",
|
|
50
|
+
"TOKEN_REFRESH",
|
|
51
|
+
]
|
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
from .algorithms import EDDSA, ES256, ES384, HS256, HS384, HS512, PS256, PS384, PS512, RS256, RS384, RS512
|
|
2
2
|
from .ciphertoken import CipherToken, is_jwt_format, validate_jwt_format
|
|
3
|
+
from .jwt import TOKEN_ACCESS as JWT_TOKEN_ACCESS, TOKEN_REFRESH as JWT_TOKEN_REFRESH
|
|
4
|
+
from .jwt import access as jwt_access, refresh as jwt_refresh, rotation as jwt_rotation
|
|
5
|
+
from .jwt import access_async as jwt_access_async, refresh_async as jwt_refresh_async, rotation_async as jwt_rotation_async
|
|
3
6
|
from .secret import generate_hmac_secret, generate_hmac_secret_async, generate_rsa_keypair, secret_key, secret_key_with_size
|
|
4
7
|
from .time import days, hours, minutes, now, seconds, weeks
|
|
5
8
|
from .utils import DEFAULT_SECRET_SIZE, MIN_SECRET_SIZE, TOKEN_ACCESS, TOKEN_REFRESH
|
|
9
|
+
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
"""Python wrapper for Rust algorithms submodule."""
|
|
2
|
+
|
|
3
|
+
from .ciphertoken import algorithms as _algorithms
|
|
4
|
+
|
|
5
|
+
HS256 = _algorithms.HS256
|
|
6
|
+
HS384 = _algorithms.HS384
|
|
7
|
+
HS512 = _algorithms.HS512
|
|
8
|
+
RS256 = _algorithms.RS256
|
|
9
|
+
RS384 = _algorithms.RS384
|
|
10
|
+
RS512 = _algorithms.RS512
|
|
11
|
+
ES256 = _algorithms.ES256
|
|
12
|
+
ES384 = _algorithms.ES384
|
|
13
|
+
PS256 = _algorithms.PS256
|
|
14
|
+
PS384 = _algorithms.PS384
|
|
15
|
+
PS512 = _algorithms.PS512
|
|
16
|
+
EDDSA = _algorithms.EDDSA
|
|
17
|
+
|
|
18
|
+
__all__ = ["HS256", "HS384", "HS512", "RS256", "RS384", "RS512", "ES256", "ES384", "PS256", "PS384", "PS512", "EDDSA"]
|
|
@@ -3,20 +3,21 @@ from typing import Any, Dict, Optional, Tuple
|
|
|
3
3
|
class CipherToken:
|
|
4
4
|
def __init__(self, secret: str, algorithm: str, access_ttl: int, refresh_ttl: int) -> None: ...
|
|
5
5
|
|
|
6
|
-
def
|
|
7
|
-
def
|
|
6
|
+
def payload(self, payload: Optional[Dict[str, Any]] = None) -> str: ...
|
|
7
|
+
def access(self, payload: Optional[Dict[str, Any]] = None) -> str: ...
|
|
8
|
+
def refresh(self, payload: Optional[Dict[str, Any]] = None) -> str: ...
|
|
8
9
|
def decode(self, token: str) -> Dict[str, Any]: ...
|
|
9
10
|
def verify(self, token: str) -> bool: ...
|
|
10
|
-
def rotation(self, refresh_token: str,
|
|
11
|
+
def rotation(self, refresh_token: str, payload: Optional[Dict[str, Any]] = None) -> Tuple[str, str]: ...
|
|
11
12
|
def inspect(self, token: str) -> Dict[str, Any]: ...
|
|
12
13
|
def remaining_time(self, token: str) -> Optional[int]: ...
|
|
13
14
|
def algorithm_name(self) -> str: ...
|
|
14
15
|
|
|
15
|
-
async def access_async(self,
|
|
16
|
-
async def refresh_async(self,
|
|
16
|
+
async def access_async(self, payload: Optional[Dict[str, Any]] = None) -> str: ...
|
|
17
|
+
async def refresh_async(self, payload: Optional[Dict[str, Any]] = None) -> str: ...
|
|
17
18
|
async def decode_async(self, token: str) -> Dict[str, Any]: ...
|
|
18
19
|
async def verify_async(self, token: str) -> bool: ...
|
|
19
|
-
async def rotation_async(self, refresh_token: str,
|
|
20
|
+
async def rotation_async(self, refresh_token: str, payload: Optional[Dict[str, Any]] = None) -> Tuple[str, str]: ...
|
|
20
21
|
|
|
21
22
|
def is_jwt_format(token: str) -> bool: ...
|
|
22
23
|
def validate_jwt_format(token: str) -> bool: ...
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
"""Python wrapper for Rust jwt submodule."""
|
|
2
|
+
|
|
3
|
+
from .ciphertoken import jwt as _jwt
|
|
4
|
+
|
|
5
|
+
TOKEN_ACCESS = _jwt.TOKEN_ACCESS
|
|
6
|
+
TOKEN_REFRESH = _jwt.TOKEN_REFRESH
|
|
7
|
+
|
|
8
|
+
access = _jwt.access
|
|
9
|
+
refresh = _jwt.refresh
|
|
10
|
+
rotation = _jwt.rotation
|
|
11
|
+
|
|
12
|
+
access_async = _jwt.access_async
|
|
13
|
+
refresh_async = _jwt.refresh_async
|
|
14
|
+
rotation_async = _jwt.rotation_async
|
|
15
|
+
|
|
16
|
+
__all__ = [
|
|
17
|
+
"TOKEN_ACCESS",
|
|
18
|
+
"TOKEN_REFRESH",
|
|
19
|
+
"access",
|
|
20
|
+
"refresh",
|
|
21
|
+
"rotation",
|
|
22
|
+
"access_async",
|
|
23
|
+
"refresh_async",
|
|
24
|
+
"rotation_async",
|
|
25
|
+
]
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
from typing import Any, Dict, Optional, Tuple
|
|
2
|
+
from .ciphertoken import CipherToken
|
|
3
|
+
|
|
4
|
+
TOKEN_ACCESS: str
|
|
5
|
+
TOKEN_REFRESH: str
|
|
6
|
+
|
|
7
|
+
def access(token: CipherToken, payload: Optional[Dict[str, Any]] = None) -> str: ...
|
|
8
|
+
def refresh(token: CipherToken, payload: Optional[Dict[str, Any]] = None) -> str: ...
|
|
9
|
+
def rotation(token: CipherToken, refresh_token: str, payload: Optional[Dict[str, Any]] = None) -> Tuple[str, str]: ...
|
|
10
|
+
|
|
11
|
+
async def access_async(token: CipherToken, payload: Optional[Dict[str, Any]] = None) -> str: ...
|
|
12
|
+
async def refresh_async(token: CipherToken, payload: Optional[Dict[str, Any]] = None) -> str: ...
|
|
13
|
+
async def rotation_async(token: CipherToken, refresh_token: str, payload: Optional[Dict[str, Any]] = None) -> Tuple[str, str]: ...
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
"""Python wrapper for Rust secret submodule."""
|
|
2
|
+
|
|
3
|
+
from .ciphertoken import secret as _secret
|
|
4
|
+
|
|
5
|
+
secret_key = _secret.secret_key
|
|
6
|
+
secret_key_with_size = _secret.secret_key_with_size
|
|
7
|
+
generate_hmac_secret = _secret.generate_hmac_secret
|
|
8
|
+
generate_hmac_secret_async = _secret.generate_hmac_secret_async
|
|
9
|
+
generate_rsa_keypair = _secret.generate_rsa_keypair
|
|
10
|
+
|
|
11
|
+
__all__ = [
|
|
12
|
+
"secret_key",
|
|
13
|
+
"secret_key_with_size",
|
|
14
|
+
"generate_hmac_secret",
|
|
15
|
+
"generate_hmac_secret_async",
|
|
16
|
+
"generate_rsa_keypair",
|
|
17
|
+
]
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
"""Python wrapper for Rust time submodule."""
|
|
2
|
+
|
|
3
|
+
from .ciphertoken import time as _time
|
|
4
|
+
|
|
5
|
+
now = _time.now
|
|
6
|
+
seconds = _time.seconds
|
|
7
|
+
minutes = _time.minutes
|
|
8
|
+
hours = _time.hours
|
|
9
|
+
days = _time.days
|
|
10
|
+
weeks = _time.weeks
|
|
11
|
+
|
|
12
|
+
__all__ = ["now", "seconds", "minutes", "hours", "days", "weeks"]
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
"""Python wrapper for Rust utils submodule."""
|
|
2
|
+
|
|
3
|
+
from .ciphertoken import utils as _utils
|
|
4
|
+
|
|
5
|
+
DEFAULT_SECRET_SIZE = _utils.DEFAULT_SECRET_SIZE
|
|
6
|
+
MIN_SECRET_SIZE = _utils.MIN_SECRET_SIZE
|
|
7
|
+
TOKEN_ACCESS = _utils.TOKEN_ACCESS
|
|
8
|
+
TOKEN_REFRESH = _utils.TOKEN_REFRESH
|
|
9
|
+
|
|
10
|
+
__all__ = ["DEFAULT_SECRET_SIZE", "MIN_SECRET_SIZE", "TOKEN_ACCESS", "TOKEN_REFRESH"]
|
|
@@ -0,0 +1,163 @@
|
|
|
1
|
+
# Advanced Guide — Async
|
|
2
|
+
|
|
3
|
+
**CipherToken** provides full asynchronous support via `pyo3-asyncio` and the `tokio` runtime. All token operations have async equivalents.
|
|
4
|
+
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
## When to Use Async
|
|
8
|
+
|
|
9
|
+
Use async methods when your application already runs inside an async framework such as **FastAPI**, **Sanic**, or **AioHTTP**. The async methods provide the same functionality as sync methods without blocking the event loop.
|
|
10
|
+
|
|
11
|
+
---
|
|
12
|
+
|
|
13
|
+
## Async API Surface
|
|
14
|
+
|
|
15
|
+
| Async Method | Sync Equivalent |
|
|
16
|
+
|--------------|-----------------|
|
|
17
|
+
| `access_async(payload) -> str` | `access(payload) -> str` |
|
|
18
|
+
| `refresh_async(payload) -> str` | `refresh(payload) -> str` |
|
|
19
|
+
| `decode_async(token) -> dict` | `decode(token) -> dict` |
|
|
20
|
+
| `verify_async(token) -> bool` | `verify(token) -> bool` |
|
|
21
|
+
| `rotation_async(refresh_token, payload) -> Tuple[str, str]` | `rotation(refresh_token, payload) -> Tuple[str, str]` |
|
|
22
|
+
|
|
23
|
+
---
|
|
24
|
+
|
|
25
|
+
## FastAPI Example
|
|
26
|
+
|
|
27
|
+
```python
|
|
28
|
+
from fastapi import FastAPI, Depends, HTTPException
|
|
29
|
+
from ciphertoken import CipherToken
|
|
30
|
+
from ciphertoken.algorithms import HS256
|
|
31
|
+
from ciphertoken.time import minutes, days
|
|
32
|
+
|
|
33
|
+
app = FastAPI()
|
|
34
|
+
|
|
35
|
+
# Shared token instance (initialize once at startup)
|
|
36
|
+
cipher = CipherToken(
|
|
37
|
+
secret="your-strong-secret-key",
|
|
38
|
+
algorithm=HS256,
|
|
39
|
+
access_ttl=minutes(10),
|
|
40
|
+
refresh_ttl=days(7),
|
|
41
|
+
)
|
|
42
|
+
|
|
43
|
+
@app.post("/auth/login")
|
|
44
|
+
async def login(username: str, password: str):
|
|
45
|
+
# Validate credentials (pseudo-code)
|
|
46
|
+
user_id = await authenticate_user(username, password)
|
|
47
|
+
if not user_id:
|
|
48
|
+
raise HTTPException(status_code=401, detail="Invalid credentials")
|
|
49
|
+
|
|
50
|
+
access_token = await cipher.access_async(payload={"sub": username, "user_id": user_id})
|
|
51
|
+
refresh_token = await cipher.refresh_async(payload={"sub": username, "user_id": user_id})
|
|
52
|
+
|
|
53
|
+
return {"access_token": access_token, "refresh_token": refresh_token}
|
|
54
|
+
|
|
55
|
+
|
|
56
|
+
@app.post("/auth/refresh")
|
|
57
|
+
async def refresh_token_endpoint(refresh_token: str):
|
|
58
|
+
is_valid = await cipher.verify_async(refresh_token)
|
|
59
|
+
if not is_valid:
|
|
60
|
+
raise HTTPException(status_code=401, detail="Invalid refresh token")
|
|
61
|
+
|
|
62
|
+
payload = await cipher.decode_async(refresh_token)
|
|
63
|
+
new_access, new_refresh = await cipher.rotation_async(
|
|
64
|
+
refresh_token,
|
|
65
|
+
payload={"sub": payload["payload"]["sub"], "user_id": payload["payload"]["user_id"]},
|
|
66
|
+
)
|
|
67
|
+
|
|
68
|
+
return {"access_token": new_access, "refresh_token": new_refresh}
|
|
69
|
+
```
|
|
70
|
+
|
|
71
|
+
---
|
|
72
|
+
|
|
73
|
+
## Direct `asyncio` Usage
|
|
74
|
+
|
|
75
|
+
```python
|
|
76
|
+
import asyncio
|
|
77
|
+
from ciphertoken import CipherToken
|
|
78
|
+
from ciphertoken.algorithms import HS256
|
|
79
|
+
from ciphertoken.time import minutes, days
|
|
80
|
+
|
|
81
|
+
cipher = CipherToken(
|
|
82
|
+
secret="my-secret",
|
|
83
|
+
algorithm=HS256,
|
|
84
|
+
access_ttl=minutes(10),
|
|
85
|
+
refresh_ttl=days(7),
|
|
86
|
+
)
|
|
87
|
+
|
|
88
|
+
async def main():
|
|
89
|
+
access_token = await cipher.access_async(payload={"user_id": 1})
|
|
90
|
+
refresh_token = await cipher.refresh_async(payload={"user_id": 1})
|
|
91
|
+
|
|
92
|
+
claims = await cipher.decode_async(access_token)
|
|
93
|
+
print(claims)
|
|
94
|
+
|
|
95
|
+
new_access, new_refresh = await cipher.rotation_async(refresh_token)
|
|
96
|
+
|
|
97
|
+
print(f"Valid: {await cipher.verify_async(access_token)}")
|
|
98
|
+
|
|
99
|
+
asyncio.run(main())
|
|
100
|
+
```
|
|
101
|
+
|
|
102
|
+
---
|
|
103
|
+
|
|
104
|
+
## Key Pair Generation (Async)
|
|
105
|
+
|
|
106
|
+
```python
|
|
107
|
+
import asyncio
|
|
108
|
+
from ciphertoken.secret import generate_rsa_keypair, generate_hmac_secret_async
|
|
109
|
+
from ciphertoken import CipherToken
|
|
110
|
+
from ciphertoken.algorithms import RS256
|
|
111
|
+
from ciphertoken.time import minutes
|
|
112
|
+
|
|
113
|
+
async def setup():
|
|
114
|
+
private_key, public_key = generate_rsa_keypair(bits=4096)
|
|
115
|
+
secret = await generate_hmac_secret_async(64)
|
|
116
|
+
|
|
117
|
+
token_rsa = CipherToken(
|
|
118
|
+
secret=private_key,
|
|
119
|
+
algorithm=RS256,
|
|
120
|
+
access_ttl=minutes(15),
|
|
121
|
+
refresh_ttl=minutes(60),
|
|
122
|
+
)
|
|
123
|
+
|
|
124
|
+
token_hmac = CipherToken(
|
|
125
|
+
secret=secret,
|
|
126
|
+
algorithm=HS256,
|
|
127
|
+
access_ttl=minutes(15),
|
|
128
|
+
refresh_ttl=minutes(60),
|
|
129
|
+
)
|
|
130
|
+
|
|
131
|
+
asyncio.run(setup())
|
|
132
|
+
```
|
|
133
|
+
|
|
134
|
+
---
|
|
135
|
+
|
|
136
|
+
## Async with `jwt` Module
|
|
137
|
+
|
|
138
|
+
```python
|
|
139
|
+
import asyncio
|
|
140
|
+
from ciphertoken.jwt import access_async, refresh_async, rotation_async
|
|
141
|
+
|
|
142
|
+
async def main():
|
|
143
|
+
token = CipherToken(
|
|
144
|
+
secret="secret",
|
|
145
|
+
algorithm=HS256,
|
|
146
|
+
access_ttl=minutes(10),
|
|
147
|
+
refresh_ttl=days(7),
|
|
148
|
+
)
|
|
149
|
+
|
|
150
|
+
access_token = await access_async(token, payload={"sub": "user"})
|
|
151
|
+
refresh_token = await refresh_async(token, payload={"sub": "user"})
|
|
152
|
+
new_access, new_refresh = await rotation_async(token, refresh_token)
|
|
153
|
+
|
|
154
|
+
asyncio.run(main())
|
|
155
|
+
```
|
|
156
|
+
|
|
157
|
+
---
|
|
158
|
+
|
|
159
|
+
## Performance Notes
|
|
160
|
+
|
|
161
|
+
- CipherToken async methods use **`tokio`** underneath — they scale well across concurrent requests.
|
|
162
|
+
- There is **no performance penalty** for calling sync methods from sync contexts as long as you do not await them.
|
|
163
|
+
- See the [security guide](security.md) for guidance on secret handling in async environments.
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
# Advanced Guide
|
|
2
|
+
|
|
3
|
+
Production topics for **CipherToken** — the next-generation token engine.
|
|
4
|
+
|
|
5
|
+
## Topics
|
|
6
|
+
|
|
7
|
+
- [Async Usage](async.md) — Full async API with Tokio under the hood
|
|
8
|
+
- [Security Best Practices](security.md) — Key management, rotation, algorithm selection
|
|
9
|
+
|
|
10
|
+
---
|
|
11
|
+
|
|
12
|
+
## Async First
|
|
13
|
+
|
|
14
|
+
Developed by **[Cipher-Unit](https://cipherunit.xyz/)**. Every sync method has an async twin, backed by **Tokio**. No secondary package, no compatibility layers — it is part of the core engine.
|
|
15
|
+
|
|
16
|
+
!!! tip "Production async"
|
|
17
|
+
Use `CipherToken` async methods in FastAPI, Sanic, or AioHTTP for GIL-free token operations at scale.
|