ciphertoken 0.1.6__tar.gz → 0.1.8__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.8/.github/workflows/docs.yml +29 -0
- ciphertoken-0.1.8/.gitignore +18 -0
- ciphertoken-0.1.8/.pre-commit-config.yaml +28 -0
- ciphertoken-0.1.8/.vscode/settings.json +6 -0
- {ciphertoken-0.1.6 → ciphertoken-0.1.8}/Cargo.lock +1 -1
- {ciphertoken-0.1.6 → ciphertoken-0.1.8}/Cargo.toml +1 -1
- ciphertoken-0.1.8/LICENSE +21 -0
- ciphertoken-0.1.8/PKG-INFO +91 -0
- ciphertoken-0.1.8/README.md +72 -0
- ciphertoken-0.1.8/ciphertoken/.gitignore +7 -0
- ciphertoken-0.1.8/ciphertoken/__init__.py +72 -0
- ciphertoken-0.1.8/ciphertoken/__init__.pyi +79 -0
- {ciphertoken-0.1.6 → ciphertoken-0.1.8}/ciphertoken/algorithms.py +14 -1
- ciphertoken-0.1.8/ciphertoken/ciphertoken.pyi +48 -0
- ciphertoken-0.1.8/ciphertoken/jwt.py +25 -0
- ciphertoken-0.1.8/ciphertoken/jwt.pyi +11 -0
- {ciphertoken-0.1.6 → ciphertoken-0.1.8}/ciphertoken/secret.pyi +2 -2
- ciphertoken-0.1.8/ciphertoken.pyi +88 -0
- ciphertoken-0.1.8/docs/advanced/async.md +163 -0
- ciphertoken-0.1.8/docs/advanced/index.md +29 -0
- ciphertoken-0.1.8/docs/advanced/security.md +161 -0
- ciphertoken-0.1.8/docs/getting-started/index.md +66 -0
- ciphertoken-0.1.8/docs/getting-started/installation.md +113 -0
- ciphertoken-0.1.8/docs/getting-started/quick-start.md +139 -0
- ciphertoken-0.1.8/docs/index.md +71 -0
- ciphertoken-0.1.8/docs/reference/algorithms.md +67 -0
- ciphertoken-0.1.8/docs/reference/api-lookup.md +94 -0
- ciphertoken-0.1.8/docs/reference/ciphertoken.md +195 -0
- ciphertoken-0.1.8/docs/reference/index.md +49 -0
- ciphertoken-0.1.8/docs/reference/jwt.md +130 -0
- ciphertoken-0.1.8/docs/reference/secret.md +95 -0
- ciphertoken-0.1.8/docs/reference/time.md +46 -0
- ciphertoken-0.1.8/docs/reference/utils.md +23 -0
- ciphertoken-0.1.8/docs/robots.txt +4 -0
- ciphertoken-0.1.8/logo.png +0 -0
- {ciphertoken-0.1.6 → ciphertoken-0.1.8}/pyproject.toml +14 -1
- ciphertoken-0.1.8/pytest.ini +4 -0
- ciphertoken-0.1.8/ruff.toml +10 -0
- ciphertoken-0.1.8/site/404.html +499 -0
- ciphertoken-0.1.8/site/advanced/async/index.html +776 -0
- ciphertoken-0.1.8/site/advanced/index.html +672 -0
- ciphertoken-0.1.8/site/advanced/security/index.html +791 -0
- ciphertoken-0.1.8/site/assets/images/favicon.png +0 -0
- ciphertoken-0.1.8/site/assets/javascripts/LICENSE +29 -0
- ciphertoken-0.1.8/site/assets/javascripts/bundle.6e5f0216.min.js +3 -0
- ciphertoken-0.1.8/site/assets/javascripts/workers/search.e2d2d235.min.js +1 -0
- ciphertoken-0.1.8/site/assets/stylesheets/classic/main.a2001754.min.css +1 -0
- ciphertoken-0.1.8/site/assets/stylesheets/classic/palette.7dc9a0ad.min.css +1 -0
- ciphertoken-0.1.8/site/assets/stylesheets/modern/main.fba56155.min.css +1 -0
- ciphertoken-0.1.8/site/assets/stylesheets/modern/palette.dfe2e883.min.css +1 -0
- ciphertoken-0.1.8/site/getting-started/index.html +804 -0
- ciphertoken-0.1.8/site/getting-started/installation/index.html +811 -0
- ciphertoken-0.1.8/site/getting-started/quick-start/index.html +982 -0
- ciphertoken-0.1.8/site/index.html +668 -0
- ciphertoken-0.1.8/site/logo.png +0 -0
- ciphertoken-0.1.8/site/reference/algorithms/index.html +777 -0
- ciphertoken-0.1.8/site/reference/api-lookup/index.html +925 -0
- ciphertoken-0.1.8/site/reference/ciphertoken/index.html +813 -0
- ciphertoken-0.1.8/site/reference/index.html +646 -0
- ciphertoken-0.1.8/site/reference/jwt/index.html +760 -0
- ciphertoken-0.1.8/site/reference/secret/index.html +718 -0
- ciphertoken-0.1.8/site/reference/time/index.html +636 -0
- ciphertoken-0.1.8/site/reference/utils/index.html +600 -0
- ciphertoken-0.1.8/site/search.json +1 -0
- ciphertoken-0.1.8/site/sitemap.xml +18 -0
- {ciphertoken-0.1.6 → ciphertoken-0.1.8}/src/algorithms.rs +1 -1
- ciphertoken-0.1.8/src/jwt.rs +108 -0
- {ciphertoken-0.1.6 → ciphertoken-0.1.8}/src/lib.rs +109 -178
- {ciphertoken-0.1.6 → ciphertoken-0.1.8}/src/secret.rs +6 -8
- {ciphertoken-0.1.6 → ciphertoken-0.1.8}/src/time.rs +10 -7
- ciphertoken-0.1.8/tests/.gitignore +3 -0
- ciphertoken-0.1.8/tests/test_algorithms.py +143 -0
- ciphertoken-0.1.8/tests/test_ciphertoken.py +234 -0
- ciphertoken-0.1.8/tests/test_jwt.py +75 -0
- ciphertoken-0.1.8/tests/test_secret_key.py +81 -0
- ciphertoken-0.1.8/tests/test_time.py +31 -0
- ciphertoken-0.1.8/tests/test_utils.py +22 -0
- ciphertoken-0.1.8/zensical.toml +328 -0
- ciphertoken-0.1.6/.gitignore +0 -7
- ciphertoken-0.1.6/.venv-py312/bin/Activate.ps1 +0 -247
- ciphertoken-0.1.6/.venv-py312/bin/activate +0 -76
- ciphertoken-0.1.6/.venv-py312/bin/activate.csh +0 -27
- ciphertoken-0.1.6/.venv-py312/bin/activate.fish +0 -69
- ciphertoken-0.1.6/.venv-py312/bin/pip +0 -8
- ciphertoken-0.1.6/.venv-py312/bin/pip3 +0 -8
- ciphertoken-0.1.6/.venv-py312/bin/pip3.12 +0 -8
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/__init__.py +0 -13
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/__main__.py +0 -24
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/__pip-runner__.py +0 -50
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_internal/__init__.py +0 -18
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_internal/build_env.py +0 -322
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_internal/cache.py +0 -290
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_internal/cli/__init__.py +0 -4
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_internal/cli/autocompletion.py +0 -176
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_internal/cli/base_command.py +0 -240
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_internal/cli/cmdoptions.py +0 -1075
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_internal/cli/command_context.py +0 -27
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_internal/cli/index_command.py +0 -171
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_internal/cli/main.py +0 -80
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_internal/cli/main_parser.py +0 -134
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_internal/cli/parser.py +0 -294
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_internal/cli/progress_bars.py +0 -94
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_internal/cli/req_command.py +0 -329
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_internal/cli/spinners.py +0 -159
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_internal/cli/status_codes.py +0 -6
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_internal/commands/__init__.py +0 -132
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_internal/commands/cache.py +0 -228
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_internal/commands/check.py +0 -67
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_internal/commands/completion.py +0 -130
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_internal/commands/configuration.py +0 -280
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_internal/commands/debug.py +0 -201
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_internal/commands/download.py +0 -146
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_internal/commands/freeze.py +0 -109
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_internal/commands/hash.py +0 -59
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_internal/commands/help.py +0 -41
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_internal/commands/index.py +0 -139
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_internal/commands/inspect.py +0 -92
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_internal/commands/install.py +0 -784
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_internal/commands/list.py +0 -375
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_internal/commands/search.py +0 -172
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_internal/commands/show.py +0 -224
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_internal/commands/uninstall.py +0 -114
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_internal/commands/wheel.py +0 -182
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_internal/configuration.py +0 -383
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_internal/distributions/__init__.py +0 -21
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_internal/distributions/base.py +0 -53
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_internal/distributions/installed.py +0 -29
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_internal/distributions/sdist.py +0 -158
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_internal/distributions/wheel.py +0 -42
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_internal/exceptions.py +0 -809
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_internal/index/__init__.py +0 -2
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_internal/index/collector.py +0 -494
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_internal/index/package_finder.py +0 -1029
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_internal/index/sources.py +0 -284
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_internal/locations/__init__.py +0 -456
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_internal/locations/_distutils.py +0 -172
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_internal/locations/_sysconfig.py +0 -214
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_internal/locations/base.py +0 -81
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_internal/main.py +0 -12
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_internal/metadata/__init__.py +0 -128
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_internal/metadata/_json.py +0 -86
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_internal/metadata/base.py +0 -688
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_internal/metadata/importlib/__init__.py +0 -6
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_internal/metadata/importlib/_compat.py +0 -85
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_internal/metadata/importlib/_dists.py +0 -228
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_internal/metadata/importlib/_envs.py +0 -189
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_internal/metadata/pkg_resources.py +0 -301
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_internal/models/__init__.py +0 -2
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_internal/models/candidate.py +0 -25
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_internal/models/direct_url.py +0 -224
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_internal/models/format_control.py +0 -78
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_internal/models/index.py +0 -28
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_internal/models/installation_report.py +0 -56
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_internal/models/link.py +0 -604
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_internal/models/scheme.py +0 -25
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_internal/models/search_scope.py +0 -127
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_internal/models/selection_prefs.py +0 -53
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_internal/models/target_python.py +0 -121
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_internal/models/wheel.py +0 -118
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_internal/network/__init__.py +0 -2
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_internal/network/auth.py +0 -566
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_internal/network/cache.py +0 -118
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_internal/network/download.py +0 -187
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_internal/network/lazy_wheel.py +0 -210
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_internal/network/session.py +0 -523
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_internal/network/utils.py +0 -98
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_internal/network/xmlrpc.py +0 -62
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_internal/operations/build/__init__.py +0 -0
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_internal/operations/build/build_tracker.py +0 -138
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_internal/operations/build/metadata.py +0 -39
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_internal/operations/build/metadata_editable.py +0 -42
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_internal/operations/build/metadata_legacy.py +0 -74
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_internal/operations/build/wheel.py +0 -37
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_internal/operations/build/wheel_editable.py +0 -46
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_internal/operations/build/wheel_legacy.py +0 -102
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_internal/operations/check.py +0 -181
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_internal/operations/freeze.py +0 -256
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_internal/operations/install/__init__.py +0 -2
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_internal/operations/install/editable_legacy.py +0 -47
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_internal/operations/install/wheel.py +0 -741
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_internal/operations/prepare.py +0 -732
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_internal/pyproject.py +0 -185
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_internal/req/__init__.py +0 -90
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_internal/req/constructors.py +0 -560
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_internal/req/req_file.py +0 -623
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_internal/req/req_install.py +0 -934
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_internal/req/req_set.py +0 -82
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_internal/req/req_uninstall.py +0 -633
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_internal/resolution/__init__.py +0 -0
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_internal/resolution/base.py +0 -20
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_internal/resolution/legacy/__init__.py +0 -0
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_internal/resolution/legacy/resolver.py +0 -597
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__init__.py +0 -0
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/base.py +0 -139
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/candidates.py +0 -574
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/factory.py +0 -823
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/found_candidates.py +0 -174
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/provider.py +0 -258
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/reporter.py +0 -81
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/requirements.py +0 -245
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/resolver.py +0 -317
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_internal/self_outdated_check.py +0 -252
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_internal/utils/__init__.py +0 -0
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_internal/utils/_jaraco_text.py +0 -109
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_internal/utils/_log.py +0 -38
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_internal/utils/appdirs.py +0 -52
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_internal/utils/compat.py +0 -79
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_internal/utils/compatibility_tags.py +0 -188
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_internal/utils/datetime.py +0 -11
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_internal/utils/deprecation.py +0 -124
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_internal/utils/direct_url_helpers.py +0 -87
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_internal/utils/egg_link.py +0 -80
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_internal/utils/entrypoints.py +0 -84
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_internal/utils/filesystem.py +0 -149
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_internal/utils/filetypes.py +0 -27
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_internal/utils/glibc.py +0 -101
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_internal/utils/hashes.py +0 -147
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_internal/utils/logging.py +0 -354
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_internal/utils/misc.py +0 -773
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_internal/utils/packaging.py +0 -58
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_internal/utils/retry.py +0 -42
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_internal/utils/setuptools_build.py +0 -146
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_internal/utils/subprocess.py +0 -245
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_internal/utils/temp_dir.py +0 -296
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_internal/utils/unpacking.py +0 -337
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_internal/utils/urls.py +0 -55
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_internal/utils/virtualenv.py +0 -104
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_internal/utils/wheel.py +0 -134
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_internal/vcs/__init__.py +0 -15
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_internal/vcs/bazaar.py +0 -112
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_internal/vcs/git.py +0 -527
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_internal/vcs/mercurial.py +0 -163
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_internal/vcs/subversion.py +0 -324
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_internal/vcs/versioncontrol.py +0 -688
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_internal/wheel_builder.py +0 -354
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/__init__.py +0 -116
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__init__.py +0 -29
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/cachecontrol/_cmd.py +0 -70
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/cachecontrol/adapter.py +0 -161
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/cachecontrol/cache.py +0 -75
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/__init__.py +0 -8
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/file_cache.py +0 -182
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/redis_cache.py +0 -48
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/cachecontrol/controller.py +0 -500
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/cachecontrol/filewrapper.py +0 -119
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/cachecontrol/heuristics.py +0 -157
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/cachecontrol/serialize.py +0 -146
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/cachecontrol/wrapper.py +0 -43
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/certifi/__init__.py +0 -4
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/certifi/__main__.py +0 -12
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/certifi/cacert.pem +0 -4929
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/certifi/core.py +0 -114
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/certifi/py.typed +0 -0
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/distlib/__init__.py +0 -33
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/distlib/compat.py +0 -1137
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/distlib/database.py +0 -1329
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/distlib/index.py +0 -508
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/distlib/locators.py +0 -1295
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/distlib/manifest.py +0 -384
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/distlib/markers.py +0 -162
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/distlib/metadata.py +0 -1031
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/distlib/resources.py +0 -358
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/distlib/scripts.py +0 -447
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/distlib/t32.exe +0 -0
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/distlib/t64-arm.exe +0 -0
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/distlib/t64.exe +0 -0
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/distlib/util.py +0 -1984
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/distlib/version.py +0 -750
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/distlib/w32.exe +0 -0
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/distlib/w64-arm.exe +0 -0
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/distlib/w64.exe +0 -0
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/distlib/wheel.py +0 -1100
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/distro/__init__.py +0 -54
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/distro/__main__.py +0 -4
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/distro/distro.py +0 -1403
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/distro/py.typed +0 -0
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/idna/__init__.py +0 -45
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/idna/codec.py +0 -122
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/idna/compat.py +0 -15
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/idna/core.py +0 -437
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/idna/idnadata.py +0 -4243
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/idna/intranges.py +0 -57
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/idna/package_data.py +0 -1
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/idna/py.typed +0 -0
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/idna/uts46data.py +0 -8681
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/msgpack/__init__.py +0 -55
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/msgpack/exceptions.py +0 -48
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/msgpack/ext.py +0 -170
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/msgpack/fallback.py +0 -929
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/packaging/__init__.py +0 -15
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/packaging/_elffile.py +0 -110
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/packaging/_manylinux.py +0 -263
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/packaging/_musllinux.py +0 -85
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/packaging/_parser.py +0 -354
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/packaging/_structures.py +0 -61
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/packaging/_tokenizer.py +0 -194
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/packaging/licenses/__init__.py +0 -145
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/packaging/licenses/_spdx.py +0 -759
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/packaging/markers.py +0 -331
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/packaging/metadata.py +0 -863
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/packaging/py.typed +0 -0
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/packaging/requirements.py +0 -91
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/packaging/specifiers.py +0 -1020
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/packaging/tags.py +0 -617
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/packaging/utils.py +0 -163
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/packaging/version.py +0 -582
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/pkg_resources/__init__.py +0 -3676
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/platformdirs/__init__.py +0 -631
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/platformdirs/__main__.py +0 -55
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/platformdirs/android.py +0 -249
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/platformdirs/api.py +0 -298
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/platformdirs/macos.py +0 -144
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/platformdirs/py.typed +0 -0
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/platformdirs/unix.py +0 -269
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/platformdirs/version.py +0 -16
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/platformdirs/windows.py +0 -272
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/pygments/__init__.py +0 -82
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/pygments/__main__.py +0 -17
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/pygments/cmdline.py +0 -668
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/pygments/console.py +0 -70
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/pygments/filter.py +0 -70
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/pygments/filters/__init__.py +0 -940
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/pygments/formatter.py +0 -129
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__init__.py +0 -157
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/_mapping.py +0 -23
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/bbcode.py +0 -108
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/groff.py +0 -170
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/html.py +0 -987
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/img.py +0 -685
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/irc.py +0 -154
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/latex.py +0 -518
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/other.py +0 -160
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/pangomarkup.py +0 -83
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/rtf.py +0 -349
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/svg.py +0 -185
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/terminal.py +0 -127
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/terminal256.py +0 -338
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/pygments/lexer.py +0 -963
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/pygments/lexers/__init__.py +0 -362
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/pygments/lexers/_mapping.py +0 -589
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/pygments/lexers/python.py +0 -1198
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/pygments/modeline.py +0 -43
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/pygments/plugin.py +0 -72
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/pygments/regexopt.py +0 -91
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/pygments/scanner.py +0 -104
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/pygments/sphinxext.py +0 -247
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/pygments/style.py +0 -203
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/pygments/styles/__init__.py +0 -61
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/pygments/styles/_mapping.py +0 -54
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/pygments/token.py +0 -214
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/pygments/unistring.py +0 -153
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/pygments/util.py +0 -324
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/__init__.py +0 -31
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/_impl.py +0 -410
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/_in_process/__init__.py +0 -21
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/_in_process/_in_process.py +0 -389
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/py.typed +0 -0
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/requests/__init__.py +0 -179
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/requests/__version__.py +0 -14
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/requests/_internal_utils.py +0 -50
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/requests/adapters.py +0 -719
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/requests/api.py +0 -157
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/requests/auth.py +0 -314
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/requests/certs.py +0 -17
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/requests/compat.py +0 -78
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/requests/cookies.py +0 -561
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/requests/exceptions.py +0 -151
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/requests/help.py +0 -127
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/requests/hooks.py +0 -33
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/requests/models.py +0 -1037
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/requests/packages.py +0 -25
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/requests/sessions.py +0 -831
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/requests/status_codes.py +0 -128
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/requests/structures.py +0 -99
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/requests/utils.py +0 -1096
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/resolvelib/__init__.py +0 -26
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/resolvelib/compat/__init__.py +0 -0
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/resolvelib/compat/collections_abc.py +0 -6
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/resolvelib/providers.py +0 -133
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/resolvelib/py.typed +0 -0
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/resolvelib/reporters.py +0 -43
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/resolvelib/resolvers.py +0 -547
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/resolvelib/structs.py +0 -170
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/__init__.py +0 -177
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/__main__.py +0 -273
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/_cell_widths.py +0 -454
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/_emoji_codes.py +0 -3610
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/_emoji_replace.py +0 -32
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/_export_format.py +0 -76
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/_extension.py +0 -10
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/_fileno.py +0 -24
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/_inspect.py +0 -268
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/_log_render.py +0 -94
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/_loop.py +0 -43
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/_null_file.py +0 -69
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/_palettes.py +0 -309
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/_pick.py +0 -17
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/_ratio.py +0 -159
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/_spinners.py +0 -482
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/_stack.py +0 -16
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/_timer.py +0 -19
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/_win32_console.py +0 -661
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/_windows.py +0 -71
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/_windows_renderer.py +0 -56
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/_wrap.py +0 -93
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/abc.py +0 -33
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/align.py +0 -312
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/ansi.py +0 -241
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/bar.py +0 -93
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/box.py +0 -480
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/cells.py +0 -174
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/color.py +0 -621
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/color_triplet.py +0 -38
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/columns.py +0 -187
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/console.py +0 -2661
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/constrain.py +0 -37
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/containers.py +0 -167
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/control.py +0 -225
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/default_styles.py +0 -191
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/diagnose.py +0 -37
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/emoji.py +0 -96
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/errors.py +0 -34
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/file_proxy.py +0 -57
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/filesize.py +0 -88
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/highlighter.py +0 -232
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/json.py +0 -139
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/jupyter.py +0 -101
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/layout.py +0 -442
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/live.py +0 -375
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/live_render.py +0 -112
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/logging.py +0 -297
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/markup.py +0 -251
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/measure.py +0 -151
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/padding.py +0 -141
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/pager.py +0 -34
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/palette.py +0 -100
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/panel.py +0 -318
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/pretty.py +0 -1016
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/progress.py +0 -1715
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/progress_bar.py +0 -223
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/prompt.py +0 -400
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/protocol.py +0 -42
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/py.typed +0 -0
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/region.py +0 -10
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/repr.py +0 -149
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/rule.py +0 -130
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/scope.py +0 -86
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/screen.py +0 -54
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/segment.py +0 -752
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/spinner.py +0 -138
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/status.py +0 -131
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/style.py +0 -796
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/styled.py +0 -42
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/syntax.py +0 -966
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/table.py +0 -1007
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/terminal_theme.py +0 -153
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/text.py +0 -1361
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/theme.py +0 -115
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/themes.py +0 -5
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/traceback.py +0 -797
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/tree.py +0 -257
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/tomli/__init__.py +0 -8
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/tomli/_parser.py +0 -770
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/tomli/_re.py +0 -112
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/tomli/_types.py +0 -10
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/tomli/py.typed +0 -1
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/truststore/__init__.py +0 -36
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/truststore/_api.py +0 -316
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/truststore/_macos.py +0 -571
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/truststore/_openssl.py +0 -66
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/truststore/_ssl_constants.py +0 -31
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/truststore/_windows.py +0 -567
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/truststore/py.typed +0 -0
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/typing_extensions.py +0 -3641
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/urllib3/__init__.py +0 -102
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/urllib3/_collections.py +0 -355
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/urllib3/_version.py +0 -2
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/urllib3/connection.py +0 -572
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/urllib3/connectionpool.py +0 -1140
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/__init__.py +0 -0
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/_appengine_environ.py +0 -36
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__init__.py +0 -0
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/_securetransport/bindings.py +0 -519
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/_securetransport/low_level.py +0 -397
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/appengine.py +0 -314
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/ntlmpool.py +0 -130
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/pyopenssl.py +0 -518
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/securetransport.py +0 -920
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/socks.py +0 -216
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/urllib3/exceptions.py +0 -323
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/urllib3/fields.py +0 -274
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/urllib3/filepost.py +0 -98
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/__init__.py +0 -0
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/backports/__init__.py +0 -0
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/backports/makefile.py +0 -51
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/backports/weakref_finalize.py +0 -155
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/six.py +0 -1076
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/urllib3/poolmanager.py +0 -540
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/urllib3/request.py +0 -191
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/urllib3/response.py +0 -879
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__init__.py +0 -49
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/urllib3/util/connection.py +0 -149
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/urllib3/util/proxy.py +0 -57
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/urllib3/util/queue.py +0 -22
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/urllib3/util/request.py +0 -137
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/urllib3/util/response.py +0 -107
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/urllib3/util/retry.py +0 -622
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/urllib3/util/ssl_.py +0 -504
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/urllib3/util/ssl_match_hostname.py +0 -159
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/urllib3/util/ssltransport.py +0 -221
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/urllib3/util/timeout.py +0 -271
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/urllib3/util/url.py +0 -435
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/urllib3/util/wait.py +0 -152
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/vendor.txt +0 -18
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/py.typed +0 -4
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip-25.0.1.dist-info/AUTHORS.txt +0 -806
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip-25.0.1.dist-info/INSTALLER +0 -1
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip-25.0.1.dist-info/LICENSE.txt +0 -20
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip-25.0.1.dist-info/METADATA +0 -90
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip-25.0.1.dist-info/RECORD +0 -854
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip-25.0.1.dist-info/WHEEL +0 -5
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip-25.0.1.dist-info/entry_points.txt +0 -3
- ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip-25.0.1.dist-info/top_level.txt +0 -1
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/__init__.py +0 -13
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/__main__.py +0 -24
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/__pip-runner__.py +0 -50
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_internal/__init__.py +0 -18
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_internal/build_env.py +0 -322
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_internal/cache.py +0 -290
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_internal/cli/__init__.py +0 -4
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_internal/cli/autocompletion.py +0 -176
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_internal/cli/base_command.py +0 -240
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_internal/cli/cmdoptions.py +0 -1075
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_internal/cli/command_context.py +0 -27
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_internal/cli/index_command.py +0 -171
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_internal/cli/main.py +0 -80
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_internal/cli/main_parser.py +0 -134
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_internal/cli/parser.py +0 -294
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_internal/cli/progress_bars.py +0 -94
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_internal/cli/req_command.py +0 -329
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_internal/cli/spinners.py +0 -159
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_internal/cli/status_codes.py +0 -6
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_internal/commands/__init__.py +0 -132
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_internal/commands/cache.py +0 -228
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_internal/commands/check.py +0 -67
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_internal/commands/completion.py +0 -130
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_internal/commands/configuration.py +0 -280
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_internal/commands/debug.py +0 -201
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_internal/commands/download.py +0 -146
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_internal/commands/freeze.py +0 -109
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_internal/commands/hash.py +0 -59
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_internal/commands/help.py +0 -41
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_internal/commands/index.py +0 -139
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_internal/commands/inspect.py +0 -92
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_internal/commands/install.py +0 -784
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_internal/commands/list.py +0 -375
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_internal/commands/search.py +0 -172
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_internal/commands/show.py +0 -224
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_internal/commands/uninstall.py +0 -114
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_internal/commands/wheel.py +0 -182
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_internal/configuration.py +0 -383
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_internal/distributions/__init__.py +0 -21
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_internal/distributions/base.py +0 -53
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_internal/distributions/installed.py +0 -29
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_internal/distributions/sdist.py +0 -158
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_internal/distributions/wheel.py +0 -42
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_internal/exceptions.py +0 -809
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_internal/index/__init__.py +0 -2
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_internal/index/collector.py +0 -494
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_internal/index/package_finder.py +0 -1029
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_internal/index/sources.py +0 -284
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_internal/locations/__init__.py +0 -456
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_internal/locations/_distutils.py +0 -172
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_internal/locations/_sysconfig.py +0 -214
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_internal/locations/base.py +0 -81
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_internal/main.py +0 -12
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_internal/metadata/__init__.py +0 -128
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_internal/metadata/_json.py +0 -86
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_internal/metadata/base.py +0 -688
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_internal/metadata/importlib/__init__.py +0 -6
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_internal/metadata/importlib/_compat.py +0 -85
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_internal/metadata/importlib/_dists.py +0 -228
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_internal/metadata/importlib/_envs.py +0 -189
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_internal/metadata/pkg_resources.py +0 -301
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_internal/models/__init__.py +0 -2
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_internal/models/candidate.py +0 -25
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_internal/models/direct_url.py +0 -224
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_internal/models/format_control.py +0 -78
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_internal/models/index.py +0 -28
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_internal/models/installation_report.py +0 -56
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_internal/models/link.py +0 -604
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_internal/models/scheme.py +0 -25
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_internal/models/search_scope.py +0 -127
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_internal/models/selection_prefs.py +0 -53
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_internal/models/target_python.py +0 -121
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_internal/models/wheel.py +0 -118
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_internal/network/__init__.py +0 -2
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_internal/network/auth.py +0 -566
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_internal/network/cache.py +0 -118
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_internal/network/download.py +0 -187
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_internal/network/lazy_wheel.py +0 -210
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_internal/network/session.py +0 -523
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_internal/network/utils.py +0 -98
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_internal/network/xmlrpc.py +0 -62
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_internal/operations/__init__.py +0 -0
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_internal/operations/build/__init__.py +0 -0
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_internal/operations/build/build_tracker.py +0 -138
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_internal/operations/build/metadata.py +0 -39
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_internal/operations/build/metadata_editable.py +0 -42
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_internal/operations/build/metadata_legacy.py +0 -74
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_internal/operations/build/wheel.py +0 -37
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_internal/operations/build/wheel_editable.py +0 -46
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_internal/operations/build/wheel_legacy.py +0 -102
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_internal/operations/check.py +0 -181
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_internal/operations/freeze.py +0 -256
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_internal/operations/install/__init__.py +0 -2
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_internal/operations/install/editable_legacy.py +0 -47
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_internal/operations/install/wheel.py +0 -741
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_internal/operations/prepare.py +0 -732
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_internal/pyproject.py +0 -185
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_internal/req/__init__.py +0 -90
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_internal/req/constructors.py +0 -560
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_internal/req/req_file.py +0 -623
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_internal/req/req_install.py +0 -934
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_internal/req/req_set.py +0 -82
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_internal/req/req_uninstall.py +0 -633
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_internal/resolution/__init__.py +0 -0
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_internal/resolution/base.py +0 -20
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_internal/resolution/legacy/__init__.py +0 -0
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_internal/resolution/legacy/resolver.py +0 -597
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_internal/resolution/resolvelib/__init__.py +0 -0
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_internal/resolution/resolvelib/base.py +0 -139
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_internal/resolution/resolvelib/candidates.py +0 -574
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_internal/resolution/resolvelib/factory.py +0 -823
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_internal/resolution/resolvelib/found_candidates.py +0 -174
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_internal/resolution/resolvelib/provider.py +0 -258
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_internal/resolution/resolvelib/reporter.py +0 -81
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_internal/resolution/resolvelib/requirements.py +0 -245
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_internal/resolution/resolvelib/resolver.py +0 -317
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_internal/self_outdated_check.py +0 -252
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_internal/utils/__init__.py +0 -0
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_internal/utils/_jaraco_text.py +0 -109
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_internal/utils/_log.py +0 -38
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_internal/utils/appdirs.py +0 -52
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_internal/utils/compat.py +0 -79
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_internal/utils/compatibility_tags.py +0 -188
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_internal/utils/datetime.py +0 -11
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_internal/utils/deprecation.py +0 -124
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_internal/utils/direct_url_helpers.py +0 -87
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_internal/utils/egg_link.py +0 -80
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_internal/utils/entrypoints.py +0 -84
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_internal/utils/filesystem.py +0 -149
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_internal/utils/filetypes.py +0 -27
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_internal/utils/glibc.py +0 -101
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_internal/utils/hashes.py +0 -147
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_internal/utils/logging.py +0 -354
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_internal/utils/misc.py +0 -773
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_internal/utils/packaging.py +0 -58
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_internal/utils/retry.py +0 -42
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_internal/utils/setuptools_build.py +0 -146
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_internal/utils/subprocess.py +0 -245
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_internal/utils/temp_dir.py +0 -296
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_internal/utils/unpacking.py +0 -337
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_internal/utils/urls.py +0 -55
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_internal/utils/virtualenv.py +0 -104
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_internal/utils/wheel.py +0 -134
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_internal/vcs/__init__.py +0 -15
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_internal/vcs/bazaar.py +0 -112
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_internal/vcs/git.py +0 -527
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_internal/vcs/mercurial.py +0 -163
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_internal/vcs/subversion.py +0 -324
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_internal/vcs/versioncontrol.py +0 -688
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_internal/wheel_builder.py +0 -354
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/__init__.py +0 -116
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/cachecontrol/__init__.py +0 -29
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/cachecontrol/_cmd.py +0 -70
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/cachecontrol/adapter.py +0 -161
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/cachecontrol/cache.py +0 -75
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/cachecontrol/caches/__init__.py +0 -8
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/cachecontrol/caches/file_cache.py +0 -182
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/cachecontrol/caches/redis_cache.py +0 -48
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/cachecontrol/controller.py +0 -500
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/cachecontrol/filewrapper.py +0 -119
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/cachecontrol/heuristics.py +0 -157
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/cachecontrol/py.typed +0 -0
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/cachecontrol/serialize.py +0 -146
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/cachecontrol/wrapper.py +0 -43
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/certifi/__init__.py +0 -4
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/certifi/__main__.py +0 -12
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/certifi/cacert.pem +0 -4929
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/certifi/core.py +0 -114
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/certifi/py.typed +0 -0
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/distlib/__init__.py +0 -33
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/distlib/compat.py +0 -1137
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/distlib/database.py +0 -1329
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/distlib/index.py +0 -508
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/distlib/locators.py +0 -1295
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/distlib/manifest.py +0 -384
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/distlib/markers.py +0 -162
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/distlib/metadata.py +0 -1031
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/distlib/resources.py +0 -358
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/distlib/scripts.py +0 -447
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/distlib/t32.exe +0 -0
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/distlib/t64-arm.exe +0 -0
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/distlib/t64.exe +0 -0
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/distlib/util.py +0 -1984
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/distlib/version.py +0 -750
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/distlib/w32.exe +0 -0
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/distlib/w64-arm.exe +0 -0
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/distlib/w64.exe +0 -0
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/distlib/wheel.py +0 -1100
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/distro/__init__.py +0 -54
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/distro/__main__.py +0 -4
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/distro/distro.py +0 -1403
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/distro/py.typed +0 -0
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/idna/__init__.py +0 -45
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/idna/codec.py +0 -122
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/idna/compat.py +0 -15
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/idna/core.py +0 -437
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/idna/idnadata.py +0 -4243
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/idna/intranges.py +0 -57
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/idna/package_data.py +0 -1
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/idna/py.typed +0 -0
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/idna/uts46data.py +0 -8681
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/msgpack/__init__.py +0 -55
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/msgpack/exceptions.py +0 -48
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/msgpack/ext.py +0 -170
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/msgpack/fallback.py +0 -929
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/packaging/__init__.py +0 -15
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/packaging/_elffile.py +0 -110
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/packaging/_manylinux.py +0 -263
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/packaging/_musllinux.py +0 -85
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/packaging/_parser.py +0 -354
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/packaging/_structures.py +0 -61
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/packaging/_tokenizer.py +0 -194
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/packaging/licenses/__init__.py +0 -145
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/packaging/licenses/_spdx.py +0 -759
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/packaging/markers.py +0 -331
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/packaging/metadata.py +0 -863
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/packaging/py.typed +0 -0
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/packaging/requirements.py +0 -91
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/packaging/specifiers.py +0 -1020
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/packaging/tags.py +0 -617
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/packaging/utils.py +0 -163
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/packaging/version.py +0 -582
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/pkg_resources/__init__.py +0 -3676
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/platformdirs/__init__.py +0 -631
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/platformdirs/__main__.py +0 -55
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/platformdirs/android.py +0 -249
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/platformdirs/api.py +0 -298
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/platformdirs/macos.py +0 -144
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/platformdirs/py.typed +0 -0
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/platformdirs/unix.py +0 -269
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/platformdirs/version.py +0 -16
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/platformdirs/windows.py +0 -272
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/pygments/__init__.py +0 -82
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/pygments/__main__.py +0 -17
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/pygments/cmdline.py +0 -668
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/pygments/console.py +0 -70
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/pygments/filter.py +0 -70
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/pygments/filters/__init__.py +0 -940
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/pygments/formatter.py +0 -129
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/pygments/formatters/__init__.py +0 -157
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/pygments/formatters/_mapping.py +0 -23
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/pygments/formatters/bbcode.py +0 -108
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/pygments/formatters/groff.py +0 -170
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/pygments/formatters/html.py +0 -987
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/pygments/formatters/img.py +0 -685
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/pygments/formatters/irc.py +0 -154
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/pygments/formatters/latex.py +0 -518
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/pygments/formatters/other.py +0 -160
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/pygments/formatters/pangomarkup.py +0 -83
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/pygments/formatters/rtf.py +0 -349
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/pygments/formatters/svg.py +0 -185
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/pygments/formatters/terminal.py +0 -127
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/pygments/formatters/terminal256.py +0 -338
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/pygments/lexer.py +0 -963
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/pygments/lexers/__init__.py +0 -362
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/pygments/lexers/_mapping.py +0 -589
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/pygments/lexers/python.py +0 -1198
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/pygments/modeline.py +0 -43
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/pygments/plugin.py +0 -72
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/pygments/regexopt.py +0 -91
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/pygments/scanner.py +0 -104
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/pygments/sphinxext.py +0 -247
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/pygments/style.py +0 -203
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/pygments/styles/__init__.py +0 -61
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/pygments/styles/_mapping.py +0 -54
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/pygments/token.py +0 -214
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/pygments/unistring.py +0 -153
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/pygments/util.py +0 -324
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/pyproject_hooks/__init__.py +0 -31
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/pyproject_hooks/_impl.py +0 -410
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/pyproject_hooks/_in_process/__init__.py +0 -21
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/pyproject_hooks/_in_process/_in_process.py +0 -389
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/pyproject_hooks/py.typed +0 -0
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/requests/__init__.py +0 -179
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/requests/__version__.py +0 -14
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/requests/_internal_utils.py +0 -50
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/requests/adapters.py +0 -719
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/requests/api.py +0 -157
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/requests/auth.py +0 -314
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/requests/certs.py +0 -17
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/requests/compat.py +0 -78
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/requests/cookies.py +0 -561
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/requests/exceptions.py +0 -151
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/requests/help.py +0 -127
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/requests/hooks.py +0 -33
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/requests/models.py +0 -1037
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/requests/packages.py +0 -25
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/requests/sessions.py +0 -831
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/requests/status_codes.py +0 -128
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/requests/structures.py +0 -99
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/requests/utils.py +0 -1096
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/resolvelib/__init__.py +0 -26
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/resolvelib/compat/__init__.py +0 -0
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/resolvelib/compat/collections_abc.py +0 -6
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/resolvelib/providers.py +0 -133
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/resolvelib/py.typed +0 -0
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/resolvelib/reporters.py +0 -43
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/resolvelib/resolvers.py +0 -547
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/resolvelib/structs.py +0 -170
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/__init__.py +0 -177
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/__main__.py +0 -273
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/_cell_widths.py +0 -454
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/_emoji_codes.py +0 -3610
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/_emoji_replace.py +0 -32
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/_export_format.py +0 -76
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/_extension.py +0 -10
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/_fileno.py +0 -24
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/_inspect.py +0 -268
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/_log_render.py +0 -94
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/_loop.py +0 -43
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/_null_file.py +0 -69
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/_palettes.py +0 -309
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/_pick.py +0 -17
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/_ratio.py +0 -159
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/_spinners.py +0 -482
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/_stack.py +0 -16
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/_timer.py +0 -19
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/_win32_console.py +0 -661
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/_windows.py +0 -71
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/_windows_renderer.py +0 -56
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/_wrap.py +0 -93
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/abc.py +0 -33
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/align.py +0 -312
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/ansi.py +0 -241
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/bar.py +0 -93
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/box.py +0 -480
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/cells.py +0 -174
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/color.py +0 -621
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/color_triplet.py +0 -38
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/columns.py +0 -187
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/console.py +0 -2661
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/constrain.py +0 -37
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/containers.py +0 -167
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/control.py +0 -225
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/default_styles.py +0 -191
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/diagnose.py +0 -37
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/emoji.py +0 -96
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/errors.py +0 -34
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/file_proxy.py +0 -57
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/filesize.py +0 -88
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/highlighter.py +0 -232
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/json.py +0 -139
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/jupyter.py +0 -101
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/layout.py +0 -442
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/live.py +0 -375
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/live_render.py +0 -112
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/logging.py +0 -297
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/markup.py +0 -251
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/measure.py +0 -151
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/padding.py +0 -141
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/pager.py +0 -34
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/palette.py +0 -100
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/panel.py +0 -318
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/pretty.py +0 -1016
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/progress.py +0 -1715
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/progress_bar.py +0 -223
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/prompt.py +0 -400
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/protocol.py +0 -42
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/py.typed +0 -0
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/region.py +0 -10
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/repr.py +0 -149
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/rule.py +0 -130
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/scope.py +0 -86
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/screen.py +0 -54
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/segment.py +0 -752
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/spinner.py +0 -138
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/status.py +0 -131
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/style.py +0 -796
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/styled.py +0 -42
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/syntax.py +0 -966
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/table.py +0 -1007
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/terminal_theme.py +0 -153
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/text.py +0 -1361
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/theme.py +0 -115
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/themes.py +0 -5
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/traceback.py +0 -797
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/tree.py +0 -257
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/tomli/__init__.py +0 -8
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/tomli/_parser.py +0 -770
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/tomli/_re.py +0 -112
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/tomli/_types.py +0 -10
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/tomli/py.typed +0 -1
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/truststore/__init__.py +0 -36
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/truststore/_api.py +0 -316
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/truststore/_macos.py +0 -571
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/truststore/_openssl.py +0 -66
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/truststore/_ssl_constants.py +0 -31
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/truststore/_windows.py +0 -567
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/truststore/py.typed +0 -0
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/typing_extensions.py +0 -3641
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/urllib3/__init__.py +0 -102
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/urllib3/_collections.py +0 -355
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/urllib3/_version.py +0 -2
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/urllib3/connection.py +0 -572
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/urllib3/connectionpool.py +0 -1140
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/urllib3/contrib/__init__.py +0 -0
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/urllib3/contrib/_appengine_environ.py +0 -36
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__init__.py +0 -0
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/urllib3/contrib/_securetransport/bindings.py +0 -519
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/urllib3/contrib/_securetransport/low_level.py +0 -397
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/urllib3/contrib/appengine.py +0 -314
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/urllib3/contrib/ntlmpool.py +0 -130
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/urllib3/contrib/pyopenssl.py +0 -518
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/urllib3/contrib/securetransport.py +0 -920
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/urllib3/contrib/socks.py +0 -216
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/urllib3/exceptions.py +0 -323
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/urllib3/fields.py +0 -274
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/urllib3/filepost.py +0 -98
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/urllib3/packages/__init__.py +0 -0
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/urllib3/packages/backports/__init__.py +0 -0
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/urllib3/packages/backports/makefile.py +0 -51
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/urllib3/packages/backports/weakref_finalize.py +0 -155
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/urllib3/packages/six.py +0 -1076
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/urllib3/poolmanager.py +0 -540
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/urllib3/request.py +0 -191
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/urllib3/response.py +0 -879
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/urllib3/util/__init__.py +0 -49
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/urllib3/util/connection.py +0 -149
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/urllib3/util/proxy.py +0 -57
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/urllib3/util/queue.py +0 -22
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/urllib3/util/request.py +0 -137
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/urllib3/util/response.py +0 -107
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/urllib3/util/retry.py +0 -622
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/urllib3/util/ssl_.py +0 -504
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/urllib3/util/ssl_match_hostname.py +0 -159
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/urllib3/util/ssltransport.py +0 -221
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/urllib3/util/timeout.py +0 -271
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/urllib3/util/url.py +0 -435
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/urllib3/util/wait.py +0 -152
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/vendor.txt +0 -18
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip/py.typed +0 -4
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip-25.0.1.dist-info/AUTHORS.txt +0 -806
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip-25.0.1.dist-info/INSTALLER +0 -1
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip-25.0.1.dist-info/LICENSE.txt +0 -20
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip-25.0.1.dist-info/METADATA +0 -90
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip-25.0.1.dist-info/RECORD +0 -854
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip-25.0.1.dist-info/REQUESTED +0 -0
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip-25.0.1.dist-info/WHEEL +0 -5
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip-25.0.1.dist-info/entry_points.txt +0 -3
- ciphertoken-0.1.6/.venv-py312/lib64/python3.12/site-packages/pip-25.0.1.dist-info/top_level.txt +0 -1
- ciphertoken-0.1.6/.venv-py312/pyvenv.cfg +0 -5
- ciphertoken-0.1.6/PKG-INFO +0 -171
- ciphertoken-0.1.6/README.md +0 -157
- ciphertoken-0.1.6/ciphertoken/__init__.pyi +0 -5
- ciphertoken-0.1.6/ciphertoken/algorithms.pyi +0 -12
- ciphertoken-0.1.6/ciphertoken/ciphertoken.pyi +0 -22
- ciphertoken-0.1.6/ciphertoken/time.pyi +0 -7
- ciphertoken-0.1.6/ciphertoken/utils.pyi +0 -7
- {ciphertoken-0.1.6 → ciphertoken-0.1.8}/.github/workflows/build.yml +0 -0
- {ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_vendor/cachecontrol → ciphertoken-0.1.8/ciphertoken}/py.typed +0 -0
- {ciphertoken-0.1.6 → ciphertoken-0.1.8}/ciphertoken/secret.py +0 -0
- {ciphertoken-0.1.6 → ciphertoken-0.1.8}/ciphertoken/time.py +0 -0
- {ciphertoken-0.1.6 → ciphertoken-0.1.8}/ciphertoken/utils.py +0 -0
- /ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip-25.0.1.dist-info/REQUESTED → /ciphertoken-0.1.8/docs/.nojekyll +0 -0
- {ciphertoken-0.1.6 → ciphertoken-0.1.8/docs}/logo.png +0 -0
- /ciphertoken-0.1.6/.venv-py312/lib/python3.12/site-packages/pip/_internal/operations/__init__.py → /ciphertoken-0.1.8/site/objects.inv +0 -0
- {ciphertoken-0.1.6 → ciphertoken-0.1.8}/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,28 @@
|
|
|
1
|
+
repos:
|
|
2
|
+
- repo: https://github.com/astral-sh/ruff-pre-commit
|
|
3
|
+
rev: v0.13.0
|
|
4
|
+
hooks:
|
|
5
|
+
- id: ruff-check
|
|
6
|
+
args: ['--ignore', 'F401', '--exclude', '.*\\.pyi']
|
|
7
|
+
- id: ruff-format
|
|
8
|
+
exclude: '.*\\.pyi'
|
|
9
|
+
|
|
10
|
+
- repo: local
|
|
11
|
+
hooks:
|
|
12
|
+
- id: cargo-fmt
|
|
13
|
+
name: cargo fmt
|
|
14
|
+
entry: cargo fmt --check
|
|
15
|
+
language: system
|
|
16
|
+
pass_filenames: false
|
|
17
|
+
|
|
18
|
+
- id: cargo-clippy
|
|
19
|
+
name: cargo clippy
|
|
20
|
+
entry: cargo clippy -- -D warnings
|
|
21
|
+
language: system
|
|
22
|
+
pass_filenames: false
|
|
23
|
+
|
|
24
|
+
- id: pytest
|
|
25
|
+
name: pytest
|
|
26
|
+
entry: .venv/bin/pytest
|
|
27
|
+
language: system
|
|
28
|
+
pass_filenames: false
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 Cipher-Unit
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
|
@@ -0,0 +1,91 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: ciphertoken
|
|
3
|
+
Version: 0.1.8
|
|
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
|
+
Requires-Dist: pre-commit ; extra == 'test'
|
|
9
|
+
Requires-Dist: pytest ; extra == 'test'
|
|
10
|
+
Requires-Dist: pytest-asyncio ; extra == 'test'
|
|
11
|
+
Provides-Extra: test
|
|
12
|
+
License-File: LICENSE
|
|
13
|
+
Summary: High-performance token and crypto utilities written in Rust with PyO3
|
|
14
|
+
Author: Cipher-Unit
|
|
15
|
+
License: MIT
|
|
16
|
+
Requires-Python: >=3.8
|
|
17
|
+
Description-Content-Type: text/markdown; charset=UTF-8; variant=GFM
|
|
18
|
+
|
|
19
|
+
<img src="https://github.com/cipherunits/CipherToken/blob/main/logo.png" width=100>
|
|
20
|
+
|
|
21
|
+
<!--
|
|
22
|
+
description: High-performance Python JWT library built with Rust. Fast token generation, validation, and key management.
|
|
23
|
+
keywords: jwt, python, rust, cryptography, security, authentication, hs256, rs256, eddsa
|
|
24
|
+
-->
|
|
25
|
+
|
|
26
|
+
# CipherToken
|
|
27
|
+
|
|
28
|
+
**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**.
|
|
29
|
+
|
|
30
|
+
- Python 3.8+
|
|
31
|
+
- HMAC, RSA, ECDSA, RSA-PSS, EdDSA
|
|
32
|
+
- Sync and Async APIs via **Tokio**
|
|
33
|
+
|
|
34
|
+
Built by **[Cipher-Unit](https://cipherunit.xyz/)**.
|
|
35
|
+
|
|
36
|
+
---
|
|
37
|
+
|
|
38
|
+
## Documentation
|
|
39
|
+
|
|
40
|
+
📖 **Official Documentation:** [https://cipherunits.github.io/CipherToken/](https://cipherunits.github.io/CipherToken/)
|
|
41
|
+
|
|
42
|
+
---
|
|
43
|
+
|
|
44
|
+
## Installation
|
|
45
|
+
|
|
46
|
+
```bash
|
|
47
|
+
pip install ciphertoken
|
|
48
|
+
```
|
|
49
|
+
|
|
50
|
+
---
|
|
51
|
+
|
|
52
|
+
## Quick Example
|
|
53
|
+
|
|
54
|
+
```python
|
|
55
|
+
from ciphertoken import CipherToken
|
|
56
|
+
from ciphertoken.algorithms import HS256
|
|
57
|
+
from ciphertoken.time import minutes, days
|
|
58
|
+
from ciphertoken.jwt import access, refresh, rotation
|
|
59
|
+
|
|
60
|
+
token = CipherToken(
|
|
61
|
+
secret="your-strong-secret-key",
|
|
62
|
+
algorithm=HS256,
|
|
63
|
+
access_ttl=minutes(10),
|
|
64
|
+
refresh_ttl=days(7),
|
|
65
|
+
)
|
|
66
|
+
|
|
67
|
+
access_token = access(token, payload={"user_id": 42})
|
|
68
|
+
refresh_token = refresh(token, payload={"user_id": 42})
|
|
69
|
+
new_access, new_refresh = rotation(token, refresh_token)
|
|
70
|
+
|
|
71
|
+
print(token.verify(access_token)) # True
|
|
72
|
+
print(token.decode(access_token))
|
|
73
|
+
```
|
|
74
|
+
|
|
75
|
+
---
|
|
76
|
+
|
|
77
|
+
## Contribute
|
|
78
|
+
|
|
79
|
+
Contributions are welcome! Whether it's bug fixes, new algorithms, documentation improvements, or feature suggestions — feel free to open an issue or pull request.
|
|
80
|
+
|
|
81
|
+
- **Repository:** [https://github.com/cipherunits/CipherToken](https://github.com/cipherunits/CipherToken)
|
|
82
|
+
- **Issues:** [https://github.com/cipherunits/CipherToken/issues](https://github.com/cipherunits/CipherToken/issues)
|
|
83
|
+
|
|
84
|
+
Please read the code of conduct and contribution guidelines before submitting. All contributions must follow the MIT license.
|
|
85
|
+
|
|
86
|
+
---
|
|
87
|
+
|
|
88
|
+
## License
|
|
89
|
+
|
|
90
|
+
**MIT** — see [LICENSE](LICENSE) for details.
|
|
91
|
+
|
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
<img src="https://github.com/cipherunits/CipherToken/blob/main/logo.png" width=100>
|
|
2
|
+
|
|
3
|
+
<!--
|
|
4
|
+
description: High-performance Python JWT library built with Rust. Fast token generation, validation, and key management.
|
|
5
|
+
keywords: jwt, python, rust, cryptography, security, authentication, hs256, rs256, eddsa
|
|
6
|
+
-->
|
|
7
|
+
|
|
8
|
+
# CipherToken
|
|
9
|
+
|
|
10
|
+
**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**.
|
|
11
|
+
|
|
12
|
+
- Python 3.8+
|
|
13
|
+
- HMAC, RSA, ECDSA, RSA-PSS, EdDSA
|
|
14
|
+
- Sync and Async APIs via **Tokio**
|
|
15
|
+
|
|
16
|
+
Built by **[Cipher-Unit](https://cipherunit.xyz/)**.
|
|
17
|
+
|
|
18
|
+
---
|
|
19
|
+
|
|
20
|
+
## Documentation
|
|
21
|
+
|
|
22
|
+
📖 **Official Documentation:** [https://cipherunits.github.io/CipherToken/](https://cipherunits.github.io/CipherToken/)
|
|
23
|
+
|
|
24
|
+
---
|
|
25
|
+
|
|
26
|
+
## Installation
|
|
27
|
+
|
|
28
|
+
```bash
|
|
29
|
+
pip install ciphertoken
|
|
30
|
+
```
|
|
31
|
+
|
|
32
|
+
---
|
|
33
|
+
|
|
34
|
+
## Quick Example
|
|
35
|
+
|
|
36
|
+
```python
|
|
37
|
+
from ciphertoken import CipherToken
|
|
38
|
+
from ciphertoken.algorithms import HS256
|
|
39
|
+
from ciphertoken.time import minutes, days
|
|
40
|
+
from ciphertoken.jwt import access, refresh, rotation
|
|
41
|
+
|
|
42
|
+
token = CipherToken(
|
|
43
|
+
secret="your-strong-secret-key",
|
|
44
|
+
algorithm=HS256,
|
|
45
|
+
access_ttl=minutes(10),
|
|
46
|
+
refresh_ttl=days(7),
|
|
47
|
+
)
|
|
48
|
+
|
|
49
|
+
access_token = access(token, payload={"user_id": 42})
|
|
50
|
+
refresh_token = refresh(token, payload={"user_id": 42})
|
|
51
|
+
new_access, new_refresh = rotation(token, refresh_token)
|
|
52
|
+
|
|
53
|
+
print(token.verify(access_token)) # True
|
|
54
|
+
print(token.decode(access_token))
|
|
55
|
+
```
|
|
56
|
+
|
|
57
|
+
---
|
|
58
|
+
|
|
59
|
+
## Contribute
|
|
60
|
+
|
|
61
|
+
Contributions are welcome! Whether it's bug fixes, new algorithms, documentation improvements, or feature suggestions — feel free to open an issue or pull request.
|
|
62
|
+
|
|
63
|
+
- **Repository:** [https://github.com/cipherunits/CipherToken](https://github.com/cipherunits/CipherToken)
|
|
64
|
+
- **Issues:** [https://github.com/cipherunits/CipherToken/issues](https://github.com/cipherunits/CipherToken/issues)
|
|
65
|
+
|
|
66
|
+
Please read the code of conduct and contribution guidelines before submitting. All contributions must follow the MIT license.
|
|
67
|
+
|
|
68
|
+
---
|
|
69
|
+
|
|
70
|
+
## License
|
|
71
|
+
|
|
72
|
+
**MIT** — see [LICENSE](LICENSE) for details.
|
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
"""Public Python API for ciphertoken."""
|
|
2
|
+
|
|
3
|
+
from .algorithms import (
|
|
4
|
+
EDDSA,
|
|
5
|
+
ES256,
|
|
6
|
+
ES384,
|
|
7
|
+
HS256,
|
|
8
|
+
HS384,
|
|
9
|
+
HS512,
|
|
10
|
+
PS256,
|
|
11
|
+
PS384,
|
|
12
|
+
PS512,
|
|
13
|
+
RS256,
|
|
14
|
+
RS384,
|
|
15
|
+
RS512,
|
|
16
|
+
)
|
|
17
|
+
from .ciphertoken import CipherToken, is_jwt_format, validate_jwt_format
|
|
18
|
+
from .jwt import TOKEN_ACCESS, TOKEN_REFRESH
|
|
19
|
+
from .jwt import access, refresh, rotation
|
|
20
|
+
from .jwt import (
|
|
21
|
+
access_async,
|
|
22
|
+
refresh_async,
|
|
23
|
+
rotation_async,
|
|
24
|
+
)
|
|
25
|
+
from .secret import (
|
|
26
|
+
generate_hmac_secret,
|
|
27
|
+
generate_hmac_secret_async,
|
|
28
|
+
generate_rsa_keypair,
|
|
29
|
+
secret_key,
|
|
30
|
+
secret_key_with_size,
|
|
31
|
+
)
|
|
32
|
+
from .time import days, hours, minutes, now, seconds, weeks
|
|
33
|
+
from .utils import DEFAULT_SECRET_SIZE, MIN_SECRET_SIZE
|
|
34
|
+
|
|
35
|
+
__all__ = [
|
|
36
|
+
"CipherToken",
|
|
37
|
+
"is_jwt_format",
|
|
38
|
+
"validate_jwt_format",
|
|
39
|
+
"EDDSA",
|
|
40
|
+
"ES256",
|
|
41
|
+
"ES384",
|
|
42
|
+
"HS256",
|
|
43
|
+
"HS384",
|
|
44
|
+
"HS512",
|
|
45
|
+
"PS256",
|
|
46
|
+
"PS384",
|
|
47
|
+
"PS512",
|
|
48
|
+
"RS256",
|
|
49
|
+
"RS384",
|
|
50
|
+
"RS512",
|
|
51
|
+
"JWT_TOKEN_ACCESS",
|
|
52
|
+
"JWT_TOKEN_REFRESH",
|
|
53
|
+
"jwt_access",
|
|
54
|
+
"jwt_refresh",
|
|
55
|
+
"jwt_rotation",
|
|
56
|
+
"jwt_access_async",
|
|
57
|
+
"jwt_refresh_async",
|
|
58
|
+
"jwt_rotation_async",
|
|
59
|
+
"generate_hmac_secret",
|
|
60
|
+
"generate_hmac_secret_async",
|
|
61
|
+
"generate_rsa_keypair",
|
|
62
|
+
"secret_key",
|
|
63
|
+
"secret_key_with_size",
|
|
64
|
+
"days",
|
|
65
|
+
"hours",
|
|
66
|
+
"minutes",
|
|
67
|
+
"now",
|
|
68
|
+
"seconds",
|
|
69
|
+
"weeks",
|
|
70
|
+
"DEFAULT_SECRET_SIZE",
|
|
71
|
+
"MIN_SECRET_SIZE",
|
|
72
|
+
]
|
|
@@ -0,0 +1,79 @@
|
|
|
1
|
+
from typing import Any, Dict, Optional, Tuple
|
|
2
|
+
from typing_extensions import ParamSpec
|
|
3
|
+
|
|
4
|
+
P = ParamSpec("P")
|
|
5
|
+
|
|
6
|
+
# Algorithm constants
|
|
7
|
+
HS256: str
|
|
8
|
+
HS384: str
|
|
9
|
+
HS512: str
|
|
10
|
+
RS256: str
|
|
11
|
+
RS384: str
|
|
12
|
+
RS512: str
|
|
13
|
+
ES256: str
|
|
14
|
+
ES384: str
|
|
15
|
+
PS256: str
|
|
16
|
+
PS384: str
|
|
17
|
+
PS512: str
|
|
18
|
+
EDDSA: str
|
|
19
|
+
|
|
20
|
+
# JWT module constants (aliased)
|
|
21
|
+
JWT_TOKEN_ACCESS: str
|
|
22
|
+
JWT_TOKEN_REFRESH: str
|
|
23
|
+
|
|
24
|
+
# JWT functions (module-level wrappers)
|
|
25
|
+
def jwt_access(token_instance: Any, payload: Optional[Dict[str, Any]] = None) -> str: ...
|
|
26
|
+
def jwt_refresh(token_instance: Any, payload: Optional[Dict[str, Any]] = None) -> str: ...
|
|
27
|
+
def jwt_rotation(token_instance: Any, refresh_token: str, payload: Optional[Dict[str, Any]] = None) -> Tuple[str, str]: ...
|
|
28
|
+
async def jwt_access_async(token_instance: Any, payload: Optional[Dict[str, Any]] = None) -> str: ...
|
|
29
|
+
async def jwt_refresh_async(token_instance: Any, payload: Optional[Dict[str, Any]] = None) -> str: ...
|
|
30
|
+
async def jwt_rotation_async(token_instance: Any, refresh_token: str, payload: Optional[Dict[str, Any]] = None) -> Tuple[str, str]: ...
|
|
31
|
+
|
|
32
|
+
# Secret functions
|
|
33
|
+
def secret_key() -> str: ...
|
|
34
|
+
def secret_key_with_size(size: int) -> str: ...
|
|
35
|
+
def generate_hmac_secret(size: int) -> str: ...
|
|
36
|
+
async def generate_hmac_secret_async(size: int) -> str: ...
|
|
37
|
+
def generate_rsa_keypair(bits: Optional[int] = None) -> Tuple[str, str]: ...
|
|
38
|
+
|
|
39
|
+
# Time functions
|
|
40
|
+
def now() -> int: ...
|
|
41
|
+
def seconds(n: int) -> int: ...
|
|
42
|
+
def minutes(n: int) -> int: ...
|
|
43
|
+
def hours(n: int) -> int: ...
|
|
44
|
+
def days(n: int) -> int: ...
|
|
45
|
+
def weeks(n: int) -> int: ...
|
|
46
|
+
|
|
47
|
+
# Utils constants
|
|
48
|
+
DEFAULT_SECRET_SIZE: int
|
|
49
|
+
MIN_SECRET_SIZE: int
|
|
50
|
+
|
|
51
|
+
# JWT format functions
|
|
52
|
+
def is_jwt_format(token: str) -> bool: ...
|
|
53
|
+
def validate_jwt_format(token: str) -> bool: ...
|
|
54
|
+
|
|
55
|
+
# CipherToken class
|
|
56
|
+
class CipherToken:
|
|
57
|
+
"""High-performance JWT token handler with support for multiple algorithms."""
|
|
58
|
+
|
|
59
|
+
secret: str
|
|
60
|
+
access_ttl: int
|
|
61
|
+
refresh_ttl: int
|
|
62
|
+
|
|
63
|
+
def __init__(self, secret: str, algorithm: str, access_ttl: int, refresh_ttl: int) -> None: ...
|
|
64
|
+
|
|
65
|
+
def create_token(self, ttl_time: int, token_type: str, payload: Optional[Dict[str, Any]] = None) -> str: ...
|
|
66
|
+
def access(self, payload: Optional[Dict[str, Any]] = None) -> str: ...
|
|
67
|
+
def refresh(self, payload: Optional[Dict[str, Any]] = None) -> str: ...
|
|
68
|
+
def decode(self, token: str) -> Dict[str, Any]: ...
|
|
69
|
+
def verify(self, token: str) -> bool: ...
|
|
70
|
+
def inspect(self, token: str) -> Dict[str, Any]: ...
|
|
71
|
+
def rotation(self, refresh_token: str, payload: Optional[Dict[str, Any]] = None) -> Tuple[str, str]: ...
|
|
72
|
+
def remaining_time(self, token: str) -> Optional[int]: ...
|
|
73
|
+
def algorithm_name(self) -> str: ...
|
|
74
|
+
|
|
75
|
+
async def access_async(self, payload: Optional[Dict[str, Any]] = None) -> str: ...
|
|
76
|
+
async def refresh_async(self, payload: Optional[Dict[str, Any]] = None) -> str: ...
|
|
77
|
+
async def decode_async(self, token: str) -> Dict[str, Any]: ...
|
|
78
|
+
async def verify_async(self, token: str) -> bool: ...
|
|
79
|
+
async def rotation_async(self, refresh_token: str, payload: Optional[Dict[str, Any]] = None) -> Tuple[str, str]: ...
|
|
@@ -15,4 +15,17 @@ PS384 = _algorithms.PS384
|
|
|
15
15
|
PS512 = _algorithms.PS512
|
|
16
16
|
EDDSA = _algorithms.EDDSA
|
|
17
17
|
|
|
18
|
-
__all__ = [
|
|
18
|
+
__all__ = [
|
|
19
|
+
"HS256",
|
|
20
|
+
"HS384",
|
|
21
|
+
"HS512",
|
|
22
|
+
"RS256",
|
|
23
|
+
"RS384",
|
|
24
|
+
"RS512",
|
|
25
|
+
"ES256",
|
|
26
|
+
"ES384",
|
|
27
|
+
"PS256",
|
|
28
|
+
"PS384",
|
|
29
|
+
"PS512",
|
|
30
|
+
"EDDSA",
|
|
31
|
+
]
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
from typing import Any, Dict, Optional, Tuple
|
|
2
|
+
|
|
3
|
+
# CipherToken class stub
|
|
4
|
+
class CipherToken:
|
|
5
|
+
def __init__(
|
|
6
|
+
self,
|
|
7
|
+
secret: str,
|
|
8
|
+
algorithm: str,
|
|
9
|
+
access_ttl: int,
|
|
10
|
+
refresh_ttl: int,
|
|
11
|
+
) -> None: ...
|
|
12
|
+
|
|
13
|
+
def create_token(
|
|
14
|
+
self,
|
|
15
|
+
ttl_time: int,
|
|
16
|
+
token_type: str,
|
|
17
|
+
payload: Optional[Dict[str, Any]] = None,
|
|
18
|
+
) -> str: ...
|
|
19
|
+
|
|
20
|
+
def access(self, payload: Optional[Dict[str, Any]] = None) -> str: ...
|
|
21
|
+
def refresh(self, payload: Optional[Dict[str, Any]] = None) -> str: ...
|
|
22
|
+
def decode(self, token: str) -> Dict[str, Any]: ...
|
|
23
|
+
def verify(self, token: str) -> bool: ...
|
|
24
|
+
def inspect(self, token: str) -> Dict[str, Any]: ...
|
|
25
|
+
def rotation(
|
|
26
|
+
self, refresh_token: str, payload: Optional[Dict[str, Any]] = None
|
|
27
|
+
) -> Tuple[str, str]: ...
|
|
28
|
+
def remaining_time(self, token: str) -> Optional[int]: ...
|
|
29
|
+
def algorithm_name(self) -> str: ...
|
|
30
|
+
|
|
31
|
+
@property
|
|
32
|
+
def secret(self) -> str: ...
|
|
33
|
+
@property
|
|
34
|
+
def access_ttl(self) -> int: ...
|
|
35
|
+
@property
|
|
36
|
+
def refresh_ttl(self) -> int: ...
|
|
37
|
+
|
|
38
|
+
async def access_async(self, payload: Optional[Dict[str, Any]] = None) -> str: ...
|
|
39
|
+
async def refresh_async(self, payload: Optional[Dict[str, Any]] = None) -> str: ...
|
|
40
|
+
async def decode_async(self, token: str) -> Dict[str, Any]: ...
|
|
41
|
+
async def verify_async(self, token: str) -> bool: ...
|
|
42
|
+
async def rotation_async(
|
|
43
|
+
self, refresh_token: str, payload: Optional[Dict[str, Any]] = None
|
|
44
|
+
) -> Tuple[str, str]: ...
|
|
45
|
+
|
|
46
|
+
|
|
47
|
+
def is_jwt_format(token: str) -> bool: ...
|
|
48
|
+
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,11 @@
|
|
|
1
|
+
from typing import Any, Dict, Optional
|
|
2
|
+
|
|
3
|
+
def access(token: Any, payload: Optional[Dict[str, Any]] = None) -> str: ...
|
|
4
|
+
def refresh(token: Any, payload: Optional[Dict[str, Any]] = None) -> str: ...
|
|
5
|
+
def rotation(token: Any, refresh_token: str, payload: Optional[Dict[str, Any]] = None) -> tuple[str, str]: ...
|
|
6
|
+
async def access_async(token: Any, payload: Optional[Dict[str, Any]] = None) -> str: ...
|
|
7
|
+
async def refresh_async(token: Any, payload: Optional[Dict[str, Any]] = None) -> str: ...
|
|
8
|
+
async def rotation_async(token: Any, refresh_token: str, payload: Optional[Dict[str, Any]] = None) -> tuple[str, str]: ...
|
|
9
|
+
|
|
10
|
+
TOKEN_ACCESS: str
|
|
11
|
+
TOKEN_REFRESH: str
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
from typing import
|
|
1
|
+
from typing import Tuple
|
|
2
2
|
|
|
3
3
|
def secret_key() -> str: ...
|
|
4
4
|
def secret_key_with_size(size: int) -> str: ...
|
|
5
5
|
def generate_hmac_secret(size: int) -> str: ...
|
|
6
6
|
async def generate_hmac_secret_async(size: int) -> str: ...
|
|
7
|
-
def generate_rsa_keypair(bits:
|
|
7
|
+
def generate_rsa_keypair(bits: int = ...) -> Tuple[str, str]: ...
|
|
@@ -0,0 +1,88 @@
|
|
|
1
|
+
from typing import Any, Dict, Optional, Tuple
|
|
2
|
+
|
|
3
|
+
# Algorithm constants
|
|
4
|
+
HS256: str
|
|
5
|
+
HS384: str
|
|
6
|
+
HS512: str
|
|
7
|
+
RS256: str
|
|
8
|
+
RS384: str
|
|
9
|
+
RS512: str
|
|
10
|
+
ES256: str
|
|
11
|
+
ES384: str
|
|
12
|
+
PS256: str
|
|
13
|
+
PS384: str
|
|
14
|
+
PS512: str
|
|
15
|
+
EDDSA: str
|
|
16
|
+
|
|
17
|
+
# JWT module constants
|
|
18
|
+
JWT_TOKEN_ACCESS: str
|
|
19
|
+
JWT_TOKEN_REFRESH: str
|
|
20
|
+
|
|
21
|
+
# JWT functions
|
|
22
|
+
def access(token_instance: Any, payload: Optional[Dict[str, Any]] = None) -> str: ...
|
|
23
|
+
def refresh(token_instance: Any, payload: Optional[Dict[str, Any]] = None) -> str: ...
|
|
24
|
+
def rotation(token_instance: Any, refresh_token: str, payload: Optional[Dict[str, Any]] = None) -> Tuple[str, str]: ...
|
|
25
|
+
async def access_async(token_instance: Any, payload: Optional[Dict[str, Any]] = None) -> str: ...
|
|
26
|
+
async def refresh_async(token_instance: Any, payload: Optional[Dict[str, Any]] = None) -> str: ...
|
|
27
|
+
async def rotation_async(token_instance: Any, refresh_token: str, payload: Optional[Dict[str, Any]] = None) -> Tuple[str, str]: ...
|
|
28
|
+
|
|
29
|
+
# Secret functions
|
|
30
|
+
def secret_key() -> str: ...
|
|
31
|
+
def secret_key_with_size(size: int) -> str: ...
|
|
32
|
+
def generate_hmac_secret(size: int) -> str: ...
|
|
33
|
+
async def generate_hmac_secret_async(size: int) -> str: ...
|
|
34
|
+
def generate_rsa_keypair(bits: Optional[int] = None) -> Tuple[str, str]: ...
|
|
35
|
+
|
|
36
|
+
# Time functions
|
|
37
|
+
def now() -> int: ...
|
|
38
|
+
def seconds(n: int) -> int: ...
|
|
39
|
+
def minutes(n: int) -> int: ...
|
|
40
|
+
def hours(n: int) -> int: ...
|
|
41
|
+
def days(n: int) -> int: ...
|
|
42
|
+
def weeks(n: int) -> int: ...
|
|
43
|
+
|
|
44
|
+
# Utils constants
|
|
45
|
+
DEFAULT_SECRET_SIZE: int
|
|
46
|
+
MIN_SECRET_SIZE: int
|
|
47
|
+
TOKEN_ACCESS: str
|
|
48
|
+
TOKEN_REFRESH: str
|
|
49
|
+
|
|
50
|
+
# JWT format functions
|
|
51
|
+
def is_jwt_format(token: str) -> bool: ...
|
|
52
|
+
def validate_jwt_format(token: str) -> bool: ...
|
|
53
|
+
|
|
54
|
+
# CipherToken class with full autocomplete support
|
|
55
|
+
class CipherToken:
|
|
56
|
+
def __init__(self, secret: str, algorithm: str, access_ttl: int, refresh_ttl: int) -> None: ...
|
|
57
|
+
|
|
58
|
+
# Token creation
|
|
59
|
+
def create_token(self,ttl_time: int, token_type: str, payload: Optional[Dict[str, Any]] = None) -> str: ...
|
|
60
|
+
def access(self,payload: Optional[Dict[str, Any]] = None) -> str: ...
|
|
61
|
+
def refresh(self,payload: Optional[Dict[str, Any]] = None) -> str: ...
|
|
62
|
+
|
|
63
|
+
# Token inspection/decoding
|
|
64
|
+
def decode(self,token: str) -> Dict[str, Any]: ...
|
|
65
|
+
def verify(self,token: str) -> bool: ...
|
|
66
|
+
def inspect(self,token: str) -> Dict[str, Any]: ...
|
|
67
|
+
|
|
68
|
+
# Token rotation
|
|
69
|
+
def rotation(self,refresh_token: str, payload: Optional[Dict[str, Any]] = None) -> Tuple[str, str]: ...
|
|
70
|
+
|
|
71
|
+
# Utility methods
|
|
72
|
+
def remaining_time(self,token: str) -> Optional[int]: ...
|
|
73
|
+
def algorithm_name(self,) -> str: ...
|
|
74
|
+
|
|
75
|
+
# Properties
|
|
76
|
+
@property
|
|
77
|
+
def secret(self) -> str: ...
|
|
78
|
+
@property
|
|
79
|
+
def access_ttl(self) -> int: ...
|
|
80
|
+
@property
|
|
81
|
+
def refresh_ttl(self) -> int: ...
|
|
82
|
+
|
|
83
|
+
# Async methods
|
|
84
|
+
async def access_async(self,payload: Optional[Dict[str, Any]] = None) -> str: ...
|
|
85
|
+
async def refresh_async(self,payload: Optional[Dict[str, Any]] = None) -> str: ...
|
|
86
|
+
async def decode_async(self,token: str) -> Dict[str, Any]: ...
|
|
87
|
+
async def verify_async(self,token: str) -> bool: ...
|
|
88
|
+
async def rotation_async(self,refresh_token: str, payload: Optional[Dict[str, Any]] = None) -> Tuple[str, str]: ...
|