ciphertoken 0.1.7__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.
Files changed (981) hide show
  1. ciphertoken-0.1.8/.gitignore +18 -0
  2. ciphertoken-0.1.8/.pre-commit-config.yaml +28 -0
  3. ciphertoken-0.1.8/.vscode/settings.json +6 -0
  4. {ciphertoken-0.1.7 → ciphertoken-0.1.8}/Cargo.lock +1 -1
  5. {ciphertoken-0.1.7 → ciphertoken-0.1.8}/Cargo.toml +1 -1
  6. ciphertoken-0.1.8/LICENSE +21 -0
  7. {ciphertoken-0.1.7 → ciphertoken-0.1.8}/PKG-INFO +11 -1
  8. {ciphertoken-0.1.7 → ciphertoken-0.1.8}/README.md +5 -0
  9. ciphertoken-0.1.8/ciphertoken/.gitignore +7 -0
  10. {ciphertoken-0.1.7 → ciphertoken-0.1.8}/ciphertoken/__init__.py +29 -8
  11. ciphertoken-0.1.8/ciphertoken/__init__.pyi +79 -0
  12. {ciphertoken-0.1.7 → ciphertoken-0.1.8}/ciphertoken/algorithms.py +14 -1
  13. {ciphertoken-0.1.7 → ciphertoken-0.1.8}/ciphertoken/ciphertoken.pyi +30 -5
  14. ciphertoken-0.1.8/ciphertoken/jwt.pyi +11 -0
  15. {ciphertoken-0.1.7 → ciphertoken-0.1.8}/ciphertoken/secret.pyi +2 -2
  16. ciphertoken-0.1.8/ciphertoken.pyi +88 -0
  17. {ciphertoken-0.1.7 → ciphertoken-0.1.8}/docs/advanced/index.md +14 -2
  18. {ciphertoken-0.1.7 → ciphertoken-0.1.8}/docs/advanced/security.md +7 -0
  19. {ciphertoken-0.1.7 → ciphertoken-0.1.8}/docs/getting-started/index.md +12 -3
  20. {ciphertoken-0.1.7 → ciphertoken-0.1.8}/docs/getting-started/installation.md +7 -0
  21. {ciphertoken-0.1.7 → ciphertoken-0.1.8}/docs/getting-started/quick-start.md +8 -1
  22. ciphertoken-0.1.8/docs/index.md +71 -0
  23. {ciphertoken-0.1.7 → ciphertoken-0.1.8}/docs/reference/ciphertoken.md +7 -0
  24. ciphertoken-0.1.8/docs/reference/index.md +49 -0
  25. {ciphertoken-0.1.7 → ciphertoken-0.1.8}/docs/reference/jwt.md +7 -0
  26. ciphertoken-0.1.8/docs/robots.txt +4 -0
  27. ciphertoken-0.1.8/logo.png +0 -0
  28. {ciphertoken-0.1.7 → ciphertoken-0.1.8}/pyproject.toml +14 -1
  29. ciphertoken-0.1.8/pytest.ini +4 -0
  30. ciphertoken-0.1.8/ruff.toml +10 -0
  31. {ciphertoken-0.1.7 → ciphertoken-0.1.8}/site/advanced/index.html +8 -2
  32. {ciphertoken-0.1.7 → ciphertoken-0.1.8}/site/getting-started/index.html +9 -3
  33. ciphertoken-0.1.8/site/index.html +668 -0
  34. ciphertoken-0.1.8/site/logo.png +0 -0
  35. {ciphertoken-0.1.7 → ciphertoken-0.1.8}/site/reference/index.html +28 -13
  36. ciphertoken-0.1.8/site/search.json +1 -0
  37. {ciphertoken-0.1.7 → ciphertoken-0.1.8}/src/algorithms.rs +1 -1
  38. {ciphertoken-0.1.7 → ciphertoken-0.1.8}/src/jwt.rs +14 -4
  39. {ciphertoken-0.1.7 → ciphertoken-0.1.8}/src/lib.rs +53 -98
  40. {ciphertoken-0.1.7 → ciphertoken-0.1.8}/src/secret.rs +6 -8
  41. {ciphertoken-0.1.7 → ciphertoken-0.1.8}/src/time.rs +10 -7
  42. ciphertoken-0.1.8/tests/.gitignore +3 -0
  43. ciphertoken-0.1.8/tests/test_algorithms.py +143 -0
  44. ciphertoken-0.1.8/tests/test_ciphertoken.py +234 -0
  45. ciphertoken-0.1.8/tests/test_jwt.py +75 -0
  46. ciphertoken-0.1.8/tests/test_secret_key.py +81 -0
  47. ciphertoken-0.1.8/tests/test_time.py +31 -0
  48. ciphertoken-0.1.8/tests/test_utils.py +22 -0
  49. {ciphertoken-0.1.7 → ciphertoken-0.1.8}/zensical.toml +42 -27
  50. ciphertoken-0.1.7/.gitignore +0 -7
  51. ciphertoken-0.1.7/.venv-py312/bin/Activate.ps1 +0 -247
  52. ciphertoken-0.1.7/.venv-py312/bin/activate +0 -76
  53. ciphertoken-0.1.7/.venv-py312/bin/activate.csh +0 -27
  54. ciphertoken-0.1.7/.venv-py312/bin/activate.fish +0 -69
  55. ciphertoken-0.1.7/.venv-py312/bin/pip +0 -8
  56. ciphertoken-0.1.7/.venv-py312/bin/pip3 +0 -8
  57. ciphertoken-0.1.7/.venv-py312/bin/pip3.12 +0 -8
  58. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/__init__.py +0 -13
  59. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/__main__.py +0 -24
  60. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/__pip-runner__.py +0 -50
  61. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_internal/__init__.py +0 -18
  62. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_internal/build_env.py +0 -322
  63. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_internal/cache.py +0 -290
  64. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_internal/cli/__init__.py +0 -4
  65. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_internal/cli/autocompletion.py +0 -176
  66. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_internal/cli/base_command.py +0 -240
  67. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_internal/cli/cmdoptions.py +0 -1075
  68. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_internal/cli/command_context.py +0 -27
  69. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_internal/cli/index_command.py +0 -171
  70. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_internal/cli/main.py +0 -80
  71. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_internal/cli/main_parser.py +0 -134
  72. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_internal/cli/parser.py +0 -294
  73. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_internal/cli/progress_bars.py +0 -94
  74. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_internal/cli/req_command.py +0 -329
  75. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_internal/cli/spinners.py +0 -159
  76. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_internal/cli/status_codes.py +0 -6
  77. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_internal/commands/__init__.py +0 -132
  78. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_internal/commands/cache.py +0 -228
  79. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_internal/commands/check.py +0 -67
  80. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_internal/commands/completion.py +0 -130
  81. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_internal/commands/configuration.py +0 -280
  82. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_internal/commands/debug.py +0 -201
  83. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_internal/commands/download.py +0 -146
  84. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_internal/commands/freeze.py +0 -109
  85. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_internal/commands/hash.py +0 -59
  86. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_internal/commands/help.py +0 -41
  87. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_internal/commands/index.py +0 -139
  88. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_internal/commands/inspect.py +0 -92
  89. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_internal/commands/install.py +0 -784
  90. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_internal/commands/list.py +0 -375
  91. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_internal/commands/search.py +0 -172
  92. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_internal/commands/show.py +0 -224
  93. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_internal/commands/uninstall.py +0 -114
  94. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_internal/commands/wheel.py +0 -182
  95. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_internal/configuration.py +0 -383
  96. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_internal/distributions/__init__.py +0 -21
  97. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_internal/distributions/base.py +0 -53
  98. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_internal/distributions/installed.py +0 -29
  99. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_internal/distributions/sdist.py +0 -158
  100. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_internal/distributions/wheel.py +0 -42
  101. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_internal/exceptions.py +0 -809
  102. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_internal/index/__init__.py +0 -2
  103. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_internal/index/collector.py +0 -494
  104. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_internal/index/package_finder.py +0 -1029
  105. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_internal/index/sources.py +0 -284
  106. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_internal/locations/__init__.py +0 -456
  107. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_internal/locations/_distutils.py +0 -172
  108. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_internal/locations/_sysconfig.py +0 -214
  109. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_internal/locations/base.py +0 -81
  110. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_internal/main.py +0 -12
  111. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_internal/metadata/__init__.py +0 -128
  112. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_internal/metadata/_json.py +0 -86
  113. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_internal/metadata/base.py +0 -688
  114. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_internal/metadata/importlib/__init__.py +0 -6
  115. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_internal/metadata/importlib/_compat.py +0 -85
  116. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_internal/metadata/importlib/_dists.py +0 -228
  117. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_internal/metadata/importlib/_envs.py +0 -189
  118. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_internal/metadata/pkg_resources.py +0 -301
  119. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_internal/models/__init__.py +0 -2
  120. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_internal/models/candidate.py +0 -25
  121. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_internal/models/direct_url.py +0 -224
  122. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_internal/models/format_control.py +0 -78
  123. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_internal/models/index.py +0 -28
  124. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_internal/models/installation_report.py +0 -56
  125. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_internal/models/link.py +0 -604
  126. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_internal/models/scheme.py +0 -25
  127. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_internal/models/search_scope.py +0 -127
  128. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_internal/models/selection_prefs.py +0 -53
  129. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_internal/models/target_python.py +0 -121
  130. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_internal/models/wheel.py +0 -118
  131. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_internal/network/__init__.py +0 -2
  132. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_internal/network/auth.py +0 -566
  133. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_internal/network/cache.py +0 -118
  134. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_internal/network/download.py +0 -187
  135. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_internal/network/lazy_wheel.py +0 -210
  136. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_internal/network/session.py +0 -523
  137. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_internal/network/utils.py +0 -98
  138. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_internal/network/xmlrpc.py +0 -62
  139. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_internal/operations/__init__.py +0 -0
  140. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_internal/operations/build/__init__.py +0 -0
  141. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_internal/operations/build/build_tracker.py +0 -138
  142. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_internal/operations/build/metadata.py +0 -39
  143. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_internal/operations/build/metadata_editable.py +0 -42
  144. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_internal/operations/build/metadata_legacy.py +0 -74
  145. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_internal/operations/build/wheel.py +0 -37
  146. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_internal/operations/build/wheel_editable.py +0 -46
  147. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_internal/operations/build/wheel_legacy.py +0 -102
  148. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_internal/operations/check.py +0 -181
  149. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_internal/operations/freeze.py +0 -256
  150. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_internal/operations/install/__init__.py +0 -2
  151. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_internal/operations/install/editable_legacy.py +0 -47
  152. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_internal/operations/install/wheel.py +0 -741
  153. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_internal/operations/prepare.py +0 -732
  154. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_internal/pyproject.py +0 -185
  155. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_internal/req/__init__.py +0 -90
  156. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_internal/req/constructors.py +0 -560
  157. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_internal/req/req_file.py +0 -623
  158. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_internal/req/req_install.py +0 -934
  159. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_internal/req/req_set.py +0 -82
  160. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_internal/req/req_uninstall.py +0 -633
  161. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_internal/resolution/__init__.py +0 -0
  162. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_internal/resolution/base.py +0 -20
  163. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_internal/resolution/legacy/__init__.py +0 -0
  164. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_internal/resolution/legacy/resolver.py +0 -597
  165. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__init__.py +0 -0
  166. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/base.py +0 -139
  167. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/candidates.py +0 -574
  168. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/factory.py +0 -823
  169. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/found_candidates.py +0 -174
  170. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/provider.py +0 -258
  171. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/reporter.py +0 -81
  172. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/requirements.py +0 -245
  173. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/resolver.py +0 -317
  174. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_internal/self_outdated_check.py +0 -252
  175. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_internal/utils/__init__.py +0 -0
  176. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_internal/utils/_jaraco_text.py +0 -109
  177. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_internal/utils/_log.py +0 -38
  178. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_internal/utils/appdirs.py +0 -52
  179. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_internal/utils/compat.py +0 -79
  180. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_internal/utils/compatibility_tags.py +0 -188
  181. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_internal/utils/datetime.py +0 -11
  182. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_internal/utils/deprecation.py +0 -124
  183. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_internal/utils/direct_url_helpers.py +0 -87
  184. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_internal/utils/egg_link.py +0 -80
  185. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_internal/utils/entrypoints.py +0 -84
  186. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_internal/utils/filesystem.py +0 -149
  187. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_internal/utils/filetypes.py +0 -27
  188. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_internal/utils/glibc.py +0 -101
  189. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_internal/utils/hashes.py +0 -147
  190. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_internal/utils/logging.py +0 -354
  191. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_internal/utils/misc.py +0 -773
  192. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_internal/utils/packaging.py +0 -58
  193. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_internal/utils/retry.py +0 -42
  194. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_internal/utils/setuptools_build.py +0 -146
  195. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_internal/utils/subprocess.py +0 -245
  196. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_internal/utils/temp_dir.py +0 -296
  197. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_internal/utils/unpacking.py +0 -337
  198. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_internal/utils/urls.py +0 -55
  199. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_internal/utils/virtualenv.py +0 -104
  200. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_internal/utils/wheel.py +0 -134
  201. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_internal/vcs/__init__.py +0 -15
  202. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_internal/vcs/bazaar.py +0 -112
  203. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_internal/vcs/git.py +0 -527
  204. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_internal/vcs/mercurial.py +0 -163
  205. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_internal/vcs/subversion.py +0 -324
  206. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_internal/vcs/versioncontrol.py +0 -688
  207. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_internal/wheel_builder.py +0 -354
  208. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/__init__.py +0 -116
  209. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__init__.py +0 -29
  210. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/cachecontrol/_cmd.py +0 -70
  211. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/cachecontrol/adapter.py +0 -161
  212. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/cachecontrol/cache.py +0 -75
  213. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/__init__.py +0 -8
  214. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/file_cache.py +0 -182
  215. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/redis_cache.py +0 -48
  216. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/cachecontrol/controller.py +0 -500
  217. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/cachecontrol/filewrapper.py +0 -119
  218. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/cachecontrol/heuristics.py +0 -157
  219. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/cachecontrol/serialize.py +0 -146
  220. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/cachecontrol/wrapper.py +0 -43
  221. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/certifi/__init__.py +0 -4
  222. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/certifi/__main__.py +0 -12
  223. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/certifi/cacert.pem +0 -4929
  224. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/certifi/core.py +0 -114
  225. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/certifi/py.typed +0 -0
  226. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/distlib/__init__.py +0 -33
  227. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/distlib/compat.py +0 -1137
  228. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/distlib/database.py +0 -1329
  229. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/distlib/index.py +0 -508
  230. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/distlib/locators.py +0 -1295
  231. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/distlib/manifest.py +0 -384
  232. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/distlib/markers.py +0 -162
  233. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/distlib/metadata.py +0 -1031
  234. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/distlib/resources.py +0 -358
  235. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/distlib/scripts.py +0 -447
  236. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/distlib/t32.exe +0 -0
  237. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/distlib/t64-arm.exe +0 -0
  238. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/distlib/t64.exe +0 -0
  239. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/distlib/util.py +0 -1984
  240. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/distlib/version.py +0 -750
  241. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/distlib/w32.exe +0 -0
  242. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/distlib/w64-arm.exe +0 -0
  243. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/distlib/w64.exe +0 -0
  244. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/distlib/wheel.py +0 -1100
  245. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/distro/__init__.py +0 -54
  246. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/distro/__main__.py +0 -4
  247. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/distro/distro.py +0 -1403
  248. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/distro/py.typed +0 -0
  249. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/idna/__init__.py +0 -45
  250. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/idna/codec.py +0 -122
  251. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/idna/compat.py +0 -15
  252. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/idna/core.py +0 -437
  253. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/idna/idnadata.py +0 -4243
  254. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/idna/intranges.py +0 -57
  255. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/idna/package_data.py +0 -1
  256. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/idna/py.typed +0 -0
  257. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/idna/uts46data.py +0 -8681
  258. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/msgpack/__init__.py +0 -55
  259. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/msgpack/exceptions.py +0 -48
  260. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/msgpack/ext.py +0 -170
  261. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/msgpack/fallback.py +0 -929
  262. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/packaging/__init__.py +0 -15
  263. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/packaging/_elffile.py +0 -110
  264. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/packaging/_manylinux.py +0 -263
  265. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/packaging/_musllinux.py +0 -85
  266. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/packaging/_parser.py +0 -354
  267. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/packaging/_structures.py +0 -61
  268. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/packaging/_tokenizer.py +0 -194
  269. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/packaging/licenses/__init__.py +0 -145
  270. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/packaging/licenses/_spdx.py +0 -759
  271. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/packaging/markers.py +0 -331
  272. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/packaging/metadata.py +0 -863
  273. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/packaging/py.typed +0 -0
  274. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/packaging/requirements.py +0 -91
  275. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/packaging/specifiers.py +0 -1020
  276. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/packaging/tags.py +0 -617
  277. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/packaging/utils.py +0 -163
  278. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/packaging/version.py +0 -582
  279. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/pkg_resources/__init__.py +0 -3676
  280. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/platformdirs/__init__.py +0 -631
  281. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/platformdirs/__main__.py +0 -55
  282. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/platformdirs/android.py +0 -249
  283. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/platformdirs/api.py +0 -298
  284. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/platformdirs/macos.py +0 -144
  285. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/platformdirs/py.typed +0 -0
  286. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/platformdirs/unix.py +0 -269
  287. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/platformdirs/version.py +0 -16
  288. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/platformdirs/windows.py +0 -272
  289. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/pygments/__init__.py +0 -82
  290. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/pygments/__main__.py +0 -17
  291. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/pygments/cmdline.py +0 -668
  292. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/pygments/console.py +0 -70
  293. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/pygments/filter.py +0 -70
  294. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/pygments/filters/__init__.py +0 -940
  295. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/pygments/formatter.py +0 -129
  296. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__init__.py +0 -157
  297. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/_mapping.py +0 -23
  298. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/bbcode.py +0 -108
  299. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/groff.py +0 -170
  300. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/html.py +0 -987
  301. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/img.py +0 -685
  302. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/irc.py +0 -154
  303. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/latex.py +0 -518
  304. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/other.py +0 -160
  305. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/pangomarkup.py +0 -83
  306. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/rtf.py +0 -349
  307. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/svg.py +0 -185
  308. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/terminal.py +0 -127
  309. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/terminal256.py +0 -338
  310. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/pygments/lexer.py +0 -963
  311. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/pygments/lexers/__init__.py +0 -362
  312. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/pygments/lexers/_mapping.py +0 -589
  313. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/pygments/lexers/python.py +0 -1198
  314. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/pygments/modeline.py +0 -43
  315. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/pygments/plugin.py +0 -72
  316. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/pygments/regexopt.py +0 -91
  317. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/pygments/scanner.py +0 -104
  318. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/pygments/sphinxext.py +0 -247
  319. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/pygments/style.py +0 -203
  320. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/pygments/styles/__init__.py +0 -61
  321. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/pygments/styles/_mapping.py +0 -54
  322. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/pygments/token.py +0 -214
  323. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/pygments/unistring.py +0 -153
  324. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/pygments/util.py +0 -324
  325. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/__init__.py +0 -31
  326. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/_impl.py +0 -410
  327. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/_in_process/__init__.py +0 -21
  328. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/_in_process/_in_process.py +0 -389
  329. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/py.typed +0 -0
  330. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/requests/__init__.py +0 -179
  331. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/requests/__version__.py +0 -14
  332. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/requests/_internal_utils.py +0 -50
  333. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/requests/adapters.py +0 -719
  334. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/requests/api.py +0 -157
  335. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/requests/auth.py +0 -314
  336. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/requests/certs.py +0 -17
  337. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/requests/compat.py +0 -78
  338. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/requests/cookies.py +0 -561
  339. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/requests/exceptions.py +0 -151
  340. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/requests/help.py +0 -127
  341. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/requests/hooks.py +0 -33
  342. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/requests/models.py +0 -1037
  343. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/requests/packages.py +0 -25
  344. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/requests/sessions.py +0 -831
  345. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/requests/status_codes.py +0 -128
  346. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/requests/structures.py +0 -99
  347. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/requests/utils.py +0 -1096
  348. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/resolvelib/__init__.py +0 -26
  349. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/resolvelib/compat/__init__.py +0 -0
  350. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/resolvelib/compat/collections_abc.py +0 -6
  351. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/resolvelib/providers.py +0 -133
  352. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/resolvelib/py.typed +0 -0
  353. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/resolvelib/reporters.py +0 -43
  354. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/resolvelib/resolvers.py +0 -547
  355. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/resolvelib/structs.py +0 -170
  356. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/__init__.py +0 -177
  357. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/__main__.py +0 -273
  358. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/_cell_widths.py +0 -454
  359. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/_emoji_codes.py +0 -3610
  360. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/_emoji_replace.py +0 -32
  361. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/_export_format.py +0 -76
  362. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/_extension.py +0 -10
  363. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/_fileno.py +0 -24
  364. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/_inspect.py +0 -268
  365. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/_log_render.py +0 -94
  366. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/_loop.py +0 -43
  367. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/_null_file.py +0 -69
  368. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/_palettes.py +0 -309
  369. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/_pick.py +0 -17
  370. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/_ratio.py +0 -159
  371. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/_spinners.py +0 -482
  372. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/_stack.py +0 -16
  373. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/_timer.py +0 -19
  374. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/_win32_console.py +0 -661
  375. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/_windows.py +0 -71
  376. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/_windows_renderer.py +0 -56
  377. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/_wrap.py +0 -93
  378. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/abc.py +0 -33
  379. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/align.py +0 -312
  380. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/ansi.py +0 -241
  381. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/bar.py +0 -93
  382. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/box.py +0 -480
  383. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/cells.py +0 -174
  384. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/color.py +0 -621
  385. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/color_triplet.py +0 -38
  386. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/columns.py +0 -187
  387. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/console.py +0 -2661
  388. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/constrain.py +0 -37
  389. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/containers.py +0 -167
  390. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/control.py +0 -225
  391. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/default_styles.py +0 -191
  392. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/diagnose.py +0 -37
  393. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/emoji.py +0 -96
  394. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/errors.py +0 -34
  395. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/file_proxy.py +0 -57
  396. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/filesize.py +0 -88
  397. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/highlighter.py +0 -232
  398. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/json.py +0 -139
  399. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/jupyter.py +0 -101
  400. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/layout.py +0 -442
  401. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/live.py +0 -375
  402. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/live_render.py +0 -112
  403. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/logging.py +0 -297
  404. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/markup.py +0 -251
  405. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/measure.py +0 -151
  406. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/padding.py +0 -141
  407. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/pager.py +0 -34
  408. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/palette.py +0 -100
  409. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/panel.py +0 -318
  410. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/pretty.py +0 -1016
  411. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/progress.py +0 -1715
  412. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/progress_bar.py +0 -223
  413. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/prompt.py +0 -400
  414. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/protocol.py +0 -42
  415. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/py.typed +0 -0
  416. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/region.py +0 -10
  417. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/repr.py +0 -149
  418. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/rule.py +0 -130
  419. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/scope.py +0 -86
  420. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/screen.py +0 -54
  421. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/segment.py +0 -752
  422. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/spinner.py +0 -138
  423. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/status.py +0 -131
  424. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/style.py +0 -796
  425. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/styled.py +0 -42
  426. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/syntax.py +0 -966
  427. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/table.py +0 -1007
  428. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/terminal_theme.py +0 -153
  429. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/text.py +0 -1361
  430. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/theme.py +0 -115
  431. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/themes.py +0 -5
  432. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/traceback.py +0 -797
  433. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/tree.py +0 -257
  434. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/tomli/__init__.py +0 -8
  435. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/tomli/_parser.py +0 -770
  436. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/tomli/_re.py +0 -112
  437. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/tomli/_types.py +0 -10
  438. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/tomli/py.typed +0 -1
  439. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/truststore/__init__.py +0 -36
  440. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/truststore/_api.py +0 -316
  441. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/truststore/_macos.py +0 -571
  442. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/truststore/_openssl.py +0 -66
  443. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/truststore/_ssl_constants.py +0 -31
  444. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/truststore/_windows.py +0 -567
  445. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/truststore/py.typed +0 -0
  446. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/typing_extensions.py +0 -3641
  447. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/urllib3/__init__.py +0 -102
  448. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/urllib3/_collections.py +0 -355
  449. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/urllib3/_version.py +0 -2
  450. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/urllib3/connection.py +0 -572
  451. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/urllib3/connectionpool.py +0 -1140
  452. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/__init__.py +0 -0
  453. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/_appengine_environ.py +0 -36
  454. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__init__.py +0 -0
  455. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/_securetransport/bindings.py +0 -519
  456. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/_securetransport/low_level.py +0 -397
  457. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/appengine.py +0 -314
  458. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/ntlmpool.py +0 -130
  459. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/pyopenssl.py +0 -518
  460. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/securetransport.py +0 -920
  461. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/socks.py +0 -216
  462. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/urllib3/exceptions.py +0 -323
  463. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/urllib3/fields.py +0 -274
  464. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/urllib3/filepost.py +0 -98
  465. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/__init__.py +0 -0
  466. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/backports/__init__.py +0 -0
  467. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/backports/makefile.py +0 -51
  468. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/backports/weakref_finalize.py +0 -155
  469. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/six.py +0 -1076
  470. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/urllib3/poolmanager.py +0 -540
  471. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/urllib3/request.py +0 -191
  472. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/urllib3/response.py +0 -879
  473. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__init__.py +0 -49
  474. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/urllib3/util/connection.py +0 -149
  475. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/urllib3/util/proxy.py +0 -57
  476. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/urllib3/util/queue.py +0 -22
  477. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/urllib3/util/request.py +0 -137
  478. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/urllib3/util/response.py +0 -107
  479. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/urllib3/util/retry.py +0 -622
  480. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/urllib3/util/ssl_.py +0 -504
  481. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/urllib3/util/ssl_match_hostname.py +0 -159
  482. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/urllib3/util/ssltransport.py +0 -221
  483. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/urllib3/util/timeout.py +0 -271
  484. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/urllib3/util/url.py +0 -435
  485. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/urllib3/util/wait.py +0 -152
  486. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/vendor.txt +0 -18
  487. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/py.typed +0 -4
  488. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip-25.0.1.dist-info/AUTHORS.txt +0 -806
  489. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip-25.0.1.dist-info/INSTALLER +0 -1
  490. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip-25.0.1.dist-info/LICENSE.txt +0 -20
  491. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip-25.0.1.dist-info/METADATA +0 -90
  492. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip-25.0.1.dist-info/RECORD +0 -854
  493. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip-25.0.1.dist-info/WHEEL +0 -5
  494. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip-25.0.1.dist-info/entry_points.txt +0 -3
  495. ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip-25.0.1.dist-info/top_level.txt +0 -1
  496. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/__init__.py +0 -13
  497. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/__main__.py +0 -24
  498. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/__pip-runner__.py +0 -50
  499. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_internal/__init__.py +0 -18
  500. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_internal/build_env.py +0 -322
  501. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_internal/cache.py +0 -290
  502. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_internal/cli/__init__.py +0 -4
  503. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_internal/cli/autocompletion.py +0 -176
  504. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_internal/cli/base_command.py +0 -240
  505. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_internal/cli/cmdoptions.py +0 -1075
  506. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_internal/cli/command_context.py +0 -27
  507. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_internal/cli/index_command.py +0 -171
  508. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_internal/cli/main.py +0 -80
  509. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_internal/cli/main_parser.py +0 -134
  510. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_internal/cli/parser.py +0 -294
  511. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_internal/cli/progress_bars.py +0 -94
  512. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_internal/cli/req_command.py +0 -329
  513. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_internal/cli/spinners.py +0 -159
  514. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_internal/cli/status_codes.py +0 -6
  515. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_internal/commands/__init__.py +0 -132
  516. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_internal/commands/cache.py +0 -228
  517. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_internal/commands/check.py +0 -67
  518. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_internal/commands/completion.py +0 -130
  519. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_internal/commands/configuration.py +0 -280
  520. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_internal/commands/debug.py +0 -201
  521. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_internal/commands/download.py +0 -146
  522. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_internal/commands/freeze.py +0 -109
  523. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_internal/commands/hash.py +0 -59
  524. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_internal/commands/help.py +0 -41
  525. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_internal/commands/index.py +0 -139
  526. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_internal/commands/inspect.py +0 -92
  527. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_internal/commands/install.py +0 -784
  528. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_internal/commands/list.py +0 -375
  529. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_internal/commands/search.py +0 -172
  530. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_internal/commands/show.py +0 -224
  531. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_internal/commands/uninstall.py +0 -114
  532. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_internal/commands/wheel.py +0 -182
  533. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_internal/configuration.py +0 -383
  534. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_internal/distributions/__init__.py +0 -21
  535. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_internal/distributions/base.py +0 -53
  536. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_internal/distributions/installed.py +0 -29
  537. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_internal/distributions/sdist.py +0 -158
  538. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_internal/distributions/wheel.py +0 -42
  539. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_internal/exceptions.py +0 -809
  540. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_internal/index/__init__.py +0 -2
  541. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_internal/index/collector.py +0 -494
  542. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_internal/index/package_finder.py +0 -1029
  543. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_internal/index/sources.py +0 -284
  544. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_internal/locations/__init__.py +0 -456
  545. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_internal/locations/_distutils.py +0 -172
  546. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_internal/locations/_sysconfig.py +0 -214
  547. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_internal/locations/base.py +0 -81
  548. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_internal/main.py +0 -12
  549. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_internal/metadata/__init__.py +0 -128
  550. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_internal/metadata/_json.py +0 -86
  551. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_internal/metadata/base.py +0 -688
  552. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_internal/metadata/importlib/__init__.py +0 -6
  553. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_internal/metadata/importlib/_compat.py +0 -85
  554. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_internal/metadata/importlib/_dists.py +0 -228
  555. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_internal/metadata/importlib/_envs.py +0 -189
  556. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_internal/metadata/pkg_resources.py +0 -301
  557. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_internal/models/__init__.py +0 -2
  558. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_internal/models/candidate.py +0 -25
  559. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_internal/models/direct_url.py +0 -224
  560. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_internal/models/format_control.py +0 -78
  561. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_internal/models/index.py +0 -28
  562. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_internal/models/installation_report.py +0 -56
  563. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_internal/models/link.py +0 -604
  564. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_internal/models/scheme.py +0 -25
  565. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_internal/models/search_scope.py +0 -127
  566. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_internal/models/selection_prefs.py +0 -53
  567. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_internal/models/target_python.py +0 -121
  568. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_internal/models/wheel.py +0 -118
  569. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_internal/network/__init__.py +0 -2
  570. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_internal/network/auth.py +0 -566
  571. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_internal/network/cache.py +0 -118
  572. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_internal/network/download.py +0 -187
  573. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_internal/network/lazy_wheel.py +0 -210
  574. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_internal/network/session.py +0 -523
  575. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_internal/network/utils.py +0 -98
  576. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_internal/network/xmlrpc.py +0 -62
  577. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_internal/operations/__init__.py +0 -0
  578. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_internal/operations/build/__init__.py +0 -0
  579. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_internal/operations/build/build_tracker.py +0 -138
  580. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_internal/operations/build/metadata.py +0 -39
  581. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_internal/operations/build/metadata_editable.py +0 -42
  582. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_internal/operations/build/metadata_legacy.py +0 -74
  583. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_internal/operations/build/wheel.py +0 -37
  584. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_internal/operations/build/wheel_editable.py +0 -46
  585. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_internal/operations/build/wheel_legacy.py +0 -102
  586. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_internal/operations/check.py +0 -181
  587. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_internal/operations/freeze.py +0 -256
  588. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_internal/operations/install/__init__.py +0 -2
  589. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_internal/operations/install/editable_legacy.py +0 -47
  590. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_internal/operations/install/wheel.py +0 -741
  591. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_internal/operations/prepare.py +0 -732
  592. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_internal/pyproject.py +0 -185
  593. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_internal/req/__init__.py +0 -90
  594. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_internal/req/constructors.py +0 -560
  595. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_internal/req/req_file.py +0 -623
  596. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_internal/req/req_install.py +0 -934
  597. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_internal/req/req_set.py +0 -82
  598. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_internal/req/req_uninstall.py +0 -633
  599. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_internal/resolution/__init__.py +0 -0
  600. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_internal/resolution/base.py +0 -20
  601. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_internal/resolution/legacy/__init__.py +0 -0
  602. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_internal/resolution/legacy/resolver.py +0 -597
  603. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_internal/resolution/resolvelib/__init__.py +0 -0
  604. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_internal/resolution/resolvelib/base.py +0 -139
  605. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_internal/resolution/resolvelib/candidates.py +0 -574
  606. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_internal/resolution/resolvelib/factory.py +0 -823
  607. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_internal/resolution/resolvelib/found_candidates.py +0 -174
  608. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_internal/resolution/resolvelib/provider.py +0 -258
  609. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_internal/resolution/resolvelib/reporter.py +0 -81
  610. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_internal/resolution/resolvelib/requirements.py +0 -245
  611. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_internal/resolution/resolvelib/resolver.py +0 -317
  612. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_internal/self_outdated_check.py +0 -252
  613. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_internal/utils/__init__.py +0 -0
  614. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_internal/utils/_jaraco_text.py +0 -109
  615. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_internal/utils/_log.py +0 -38
  616. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_internal/utils/appdirs.py +0 -52
  617. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_internal/utils/compat.py +0 -79
  618. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_internal/utils/compatibility_tags.py +0 -188
  619. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_internal/utils/datetime.py +0 -11
  620. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_internal/utils/deprecation.py +0 -124
  621. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_internal/utils/direct_url_helpers.py +0 -87
  622. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_internal/utils/egg_link.py +0 -80
  623. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_internal/utils/entrypoints.py +0 -84
  624. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_internal/utils/filesystem.py +0 -149
  625. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_internal/utils/filetypes.py +0 -27
  626. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_internal/utils/glibc.py +0 -101
  627. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_internal/utils/hashes.py +0 -147
  628. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_internal/utils/logging.py +0 -354
  629. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_internal/utils/misc.py +0 -773
  630. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_internal/utils/packaging.py +0 -58
  631. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_internal/utils/retry.py +0 -42
  632. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_internal/utils/setuptools_build.py +0 -146
  633. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_internal/utils/subprocess.py +0 -245
  634. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_internal/utils/temp_dir.py +0 -296
  635. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_internal/utils/unpacking.py +0 -337
  636. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_internal/utils/urls.py +0 -55
  637. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_internal/utils/virtualenv.py +0 -104
  638. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_internal/utils/wheel.py +0 -134
  639. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_internal/vcs/__init__.py +0 -15
  640. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_internal/vcs/bazaar.py +0 -112
  641. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_internal/vcs/git.py +0 -527
  642. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_internal/vcs/mercurial.py +0 -163
  643. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_internal/vcs/subversion.py +0 -324
  644. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_internal/vcs/versioncontrol.py +0 -688
  645. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_internal/wheel_builder.py +0 -354
  646. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/__init__.py +0 -116
  647. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/cachecontrol/__init__.py +0 -29
  648. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/cachecontrol/_cmd.py +0 -70
  649. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/cachecontrol/adapter.py +0 -161
  650. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/cachecontrol/cache.py +0 -75
  651. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/cachecontrol/caches/__init__.py +0 -8
  652. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/cachecontrol/caches/file_cache.py +0 -182
  653. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/cachecontrol/caches/redis_cache.py +0 -48
  654. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/cachecontrol/controller.py +0 -500
  655. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/cachecontrol/filewrapper.py +0 -119
  656. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/cachecontrol/heuristics.py +0 -157
  657. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/cachecontrol/py.typed +0 -0
  658. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/cachecontrol/serialize.py +0 -146
  659. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/cachecontrol/wrapper.py +0 -43
  660. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/certifi/__init__.py +0 -4
  661. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/certifi/__main__.py +0 -12
  662. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/certifi/cacert.pem +0 -4929
  663. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/certifi/core.py +0 -114
  664. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/certifi/py.typed +0 -0
  665. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/distlib/__init__.py +0 -33
  666. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/distlib/compat.py +0 -1137
  667. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/distlib/database.py +0 -1329
  668. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/distlib/index.py +0 -508
  669. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/distlib/locators.py +0 -1295
  670. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/distlib/manifest.py +0 -384
  671. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/distlib/markers.py +0 -162
  672. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/distlib/metadata.py +0 -1031
  673. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/distlib/resources.py +0 -358
  674. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/distlib/scripts.py +0 -447
  675. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/distlib/t32.exe +0 -0
  676. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/distlib/t64-arm.exe +0 -0
  677. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/distlib/t64.exe +0 -0
  678. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/distlib/util.py +0 -1984
  679. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/distlib/version.py +0 -750
  680. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/distlib/w32.exe +0 -0
  681. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/distlib/w64-arm.exe +0 -0
  682. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/distlib/w64.exe +0 -0
  683. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/distlib/wheel.py +0 -1100
  684. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/distro/__init__.py +0 -54
  685. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/distro/__main__.py +0 -4
  686. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/distro/distro.py +0 -1403
  687. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/distro/py.typed +0 -0
  688. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/idna/__init__.py +0 -45
  689. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/idna/codec.py +0 -122
  690. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/idna/compat.py +0 -15
  691. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/idna/core.py +0 -437
  692. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/idna/idnadata.py +0 -4243
  693. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/idna/intranges.py +0 -57
  694. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/idna/package_data.py +0 -1
  695. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/idna/py.typed +0 -0
  696. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/idna/uts46data.py +0 -8681
  697. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/msgpack/__init__.py +0 -55
  698. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/msgpack/exceptions.py +0 -48
  699. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/msgpack/ext.py +0 -170
  700. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/msgpack/fallback.py +0 -929
  701. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/packaging/__init__.py +0 -15
  702. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/packaging/_elffile.py +0 -110
  703. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/packaging/_manylinux.py +0 -263
  704. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/packaging/_musllinux.py +0 -85
  705. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/packaging/_parser.py +0 -354
  706. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/packaging/_structures.py +0 -61
  707. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/packaging/_tokenizer.py +0 -194
  708. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/packaging/licenses/__init__.py +0 -145
  709. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/packaging/licenses/_spdx.py +0 -759
  710. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/packaging/markers.py +0 -331
  711. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/packaging/metadata.py +0 -863
  712. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/packaging/py.typed +0 -0
  713. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/packaging/requirements.py +0 -91
  714. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/packaging/specifiers.py +0 -1020
  715. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/packaging/tags.py +0 -617
  716. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/packaging/utils.py +0 -163
  717. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/packaging/version.py +0 -582
  718. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/pkg_resources/__init__.py +0 -3676
  719. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/platformdirs/__init__.py +0 -631
  720. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/platformdirs/__main__.py +0 -55
  721. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/platformdirs/android.py +0 -249
  722. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/platformdirs/api.py +0 -298
  723. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/platformdirs/macos.py +0 -144
  724. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/platformdirs/py.typed +0 -0
  725. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/platformdirs/unix.py +0 -269
  726. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/platformdirs/version.py +0 -16
  727. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/platformdirs/windows.py +0 -272
  728. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/pygments/__init__.py +0 -82
  729. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/pygments/__main__.py +0 -17
  730. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/pygments/cmdline.py +0 -668
  731. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/pygments/console.py +0 -70
  732. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/pygments/filter.py +0 -70
  733. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/pygments/filters/__init__.py +0 -940
  734. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/pygments/formatter.py +0 -129
  735. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/pygments/formatters/__init__.py +0 -157
  736. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/pygments/formatters/_mapping.py +0 -23
  737. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/pygments/formatters/bbcode.py +0 -108
  738. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/pygments/formatters/groff.py +0 -170
  739. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/pygments/formatters/html.py +0 -987
  740. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/pygments/formatters/img.py +0 -685
  741. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/pygments/formatters/irc.py +0 -154
  742. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/pygments/formatters/latex.py +0 -518
  743. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/pygments/formatters/other.py +0 -160
  744. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/pygments/formatters/pangomarkup.py +0 -83
  745. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/pygments/formatters/rtf.py +0 -349
  746. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/pygments/formatters/svg.py +0 -185
  747. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/pygments/formatters/terminal.py +0 -127
  748. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/pygments/formatters/terminal256.py +0 -338
  749. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/pygments/lexer.py +0 -963
  750. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/pygments/lexers/__init__.py +0 -362
  751. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/pygments/lexers/_mapping.py +0 -589
  752. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/pygments/lexers/python.py +0 -1198
  753. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/pygments/modeline.py +0 -43
  754. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/pygments/plugin.py +0 -72
  755. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/pygments/regexopt.py +0 -91
  756. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/pygments/scanner.py +0 -104
  757. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/pygments/sphinxext.py +0 -247
  758. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/pygments/style.py +0 -203
  759. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/pygments/styles/__init__.py +0 -61
  760. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/pygments/styles/_mapping.py +0 -54
  761. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/pygments/token.py +0 -214
  762. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/pygments/unistring.py +0 -153
  763. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/pygments/util.py +0 -324
  764. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/pyproject_hooks/__init__.py +0 -31
  765. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/pyproject_hooks/_impl.py +0 -410
  766. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/pyproject_hooks/_in_process/__init__.py +0 -21
  767. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/pyproject_hooks/_in_process/_in_process.py +0 -389
  768. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/pyproject_hooks/py.typed +0 -0
  769. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/requests/__init__.py +0 -179
  770. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/requests/__version__.py +0 -14
  771. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/requests/_internal_utils.py +0 -50
  772. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/requests/adapters.py +0 -719
  773. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/requests/api.py +0 -157
  774. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/requests/auth.py +0 -314
  775. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/requests/certs.py +0 -17
  776. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/requests/compat.py +0 -78
  777. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/requests/cookies.py +0 -561
  778. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/requests/exceptions.py +0 -151
  779. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/requests/help.py +0 -127
  780. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/requests/hooks.py +0 -33
  781. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/requests/models.py +0 -1037
  782. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/requests/packages.py +0 -25
  783. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/requests/sessions.py +0 -831
  784. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/requests/status_codes.py +0 -128
  785. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/requests/structures.py +0 -99
  786. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/requests/utils.py +0 -1096
  787. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/resolvelib/__init__.py +0 -26
  788. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/resolvelib/compat/__init__.py +0 -0
  789. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/resolvelib/compat/collections_abc.py +0 -6
  790. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/resolvelib/providers.py +0 -133
  791. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/resolvelib/py.typed +0 -0
  792. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/resolvelib/reporters.py +0 -43
  793. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/resolvelib/resolvers.py +0 -547
  794. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/resolvelib/structs.py +0 -170
  795. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/__init__.py +0 -177
  796. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/__main__.py +0 -273
  797. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/_cell_widths.py +0 -454
  798. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/_emoji_codes.py +0 -3610
  799. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/_emoji_replace.py +0 -32
  800. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/_export_format.py +0 -76
  801. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/_extension.py +0 -10
  802. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/_fileno.py +0 -24
  803. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/_inspect.py +0 -268
  804. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/_log_render.py +0 -94
  805. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/_loop.py +0 -43
  806. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/_null_file.py +0 -69
  807. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/_palettes.py +0 -309
  808. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/_pick.py +0 -17
  809. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/_ratio.py +0 -159
  810. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/_spinners.py +0 -482
  811. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/_stack.py +0 -16
  812. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/_timer.py +0 -19
  813. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/_win32_console.py +0 -661
  814. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/_windows.py +0 -71
  815. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/_windows_renderer.py +0 -56
  816. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/_wrap.py +0 -93
  817. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/abc.py +0 -33
  818. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/align.py +0 -312
  819. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/ansi.py +0 -241
  820. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/bar.py +0 -93
  821. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/box.py +0 -480
  822. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/cells.py +0 -174
  823. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/color.py +0 -621
  824. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/color_triplet.py +0 -38
  825. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/columns.py +0 -187
  826. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/console.py +0 -2661
  827. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/constrain.py +0 -37
  828. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/containers.py +0 -167
  829. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/control.py +0 -225
  830. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/default_styles.py +0 -191
  831. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/diagnose.py +0 -37
  832. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/emoji.py +0 -96
  833. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/errors.py +0 -34
  834. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/file_proxy.py +0 -57
  835. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/filesize.py +0 -88
  836. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/highlighter.py +0 -232
  837. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/json.py +0 -139
  838. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/jupyter.py +0 -101
  839. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/layout.py +0 -442
  840. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/live.py +0 -375
  841. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/live_render.py +0 -112
  842. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/logging.py +0 -297
  843. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/markup.py +0 -251
  844. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/measure.py +0 -151
  845. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/padding.py +0 -141
  846. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/pager.py +0 -34
  847. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/palette.py +0 -100
  848. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/panel.py +0 -318
  849. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/pretty.py +0 -1016
  850. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/progress.py +0 -1715
  851. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/progress_bar.py +0 -223
  852. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/prompt.py +0 -400
  853. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/protocol.py +0 -42
  854. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/py.typed +0 -0
  855. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/region.py +0 -10
  856. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/repr.py +0 -149
  857. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/rule.py +0 -130
  858. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/scope.py +0 -86
  859. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/screen.py +0 -54
  860. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/segment.py +0 -752
  861. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/spinner.py +0 -138
  862. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/status.py +0 -131
  863. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/style.py +0 -796
  864. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/styled.py +0 -42
  865. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/syntax.py +0 -966
  866. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/table.py +0 -1007
  867. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/terminal_theme.py +0 -153
  868. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/text.py +0 -1361
  869. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/theme.py +0 -115
  870. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/themes.py +0 -5
  871. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/traceback.py +0 -797
  872. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/tree.py +0 -257
  873. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/tomli/__init__.py +0 -8
  874. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/tomli/_parser.py +0 -770
  875. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/tomli/_re.py +0 -112
  876. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/tomli/_types.py +0 -10
  877. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/tomli/py.typed +0 -1
  878. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/truststore/__init__.py +0 -36
  879. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/truststore/_api.py +0 -316
  880. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/truststore/_macos.py +0 -571
  881. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/truststore/_openssl.py +0 -66
  882. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/truststore/_ssl_constants.py +0 -31
  883. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/truststore/_windows.py +0 -567
  884. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/truststore/py.typed +0 -0
  885. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/typing_extensions.py +0 -3641
  886. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/urllib3/__init__.py +0 -102
  887. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/urllib3/_collections.py +0 -355
  888. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/urllib3/_version.py +0 -2
  889. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/urllib3/connection.py +0 -572
  890. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/urllib3/connectionpool.py +0 -1140
  891. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/urllib3/contrib/__init__.py +0 -0
  892. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/urllib3/contrib/_appengine_environ.py +0 -36
  893. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__init__.py +0 -0
  894. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/urllib3/contrib/_securetransport/bindings.py +0 -519
  895. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/urllib3/contrib/_securetransport/low_level.py +0 -397
  896. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/urllib3/contrib/appengine.py +0 -314
  897. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/urllib3/contrib/ntlmpool.py +0 -130
  898. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/urllib3/contrib/pyopenssl.py +0 -518
  899. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/urllib3/contrib/securetransport.py +0 -920
  900. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/urllib3/contrib/socks.py +0 -216
  901. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/urllib3/exceptions.py +0 -323
  902. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/urllib3/fields.py +0 -274
  903. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/urllib3/filepost.py +0 -98
  904. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/urllib3/packages/__init__.py +0 -0
  905. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/urllib3/packages/backports/__init__.py +0 -0
  906. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/urllib3/packages/backports/makefile.py +0 -51
  907. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/urllib3/packages/backports/weakref_finalize.py +0 -155
  908. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/urllib3/packages/six.py +0 -1076
  909. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/urllib3/poolmanager.py +0 -540
  910. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/urllib3/request.py +0 -191
  911. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/urllib3/response.py +0 -879
  912. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/urllib3/util/__init__.py +0 -49
  913. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/urllib3/util/connection.py +0 -149
  914. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/urllib3/util/proxy.py +0 -57
  915. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/urllib3/util/queue.py +0 -22
  916. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/urllib3/util/request.py +0 -137
  917. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/urllib3/util/response.py +0 -107
  918. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/urllib3/util/retry.py +0 -622
  919. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/urllib3/util/ssl_.py +0 -504
  920. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/urllib3/util/ssl_match_hostname.py +0 -159
  921. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/urllib3/util/ssltransport.py +0 -221
  922. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/urllib3/util/timeout.py +0 -271
  923. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/urllib3/util/url.py +0 -435
  924. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/urllib3/util/wait.py +0 -152
  925. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/vendor.txt +0 -18
  926. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip/py.typed +0 -4
  927. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip-25.0.1.dist-info/AUTHORS.txt +0 -806
  928. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip-25.0.1.dist-info/INSTALLER +0 -1
  929. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip-25.0.1.dist-info/LICENSE.txt +0 -20
  930. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip-25.0.1.dist-info/METADATA +0 -90
  931. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip-25.0.1.dist-info/RECORD +0 -854
  932. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip-25.0.1.dist-info/REQUESTED +0 -0
  933. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip-25.0.1.dist-info/WHEEL +0 -5
  934. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip-25.0.1.dist-info/entry_points.txt +0 -3
  935. ciphertoken-0.1.7/.venv-py312/lib64/python3.12/site-packages/pip-25.0.1.dist-info/top_level.txt +0 -1
  936. ciphertoken-0.1.7/.venv-py312/pyvenv.cfg +0 -5
  937. ciphertoken-0.1.7/ciphertoken/__init__.pyi +0 -9
  938. ciphertoken-0.1.7/ciphertoken/algorithms.pyi +0 -12
  939. ciphertoken-0.1.7/ciphertoken/jwt.pyi +0 -13
  940. ciphertoken-0.1.7/ciphertoken/time.pyi +0 -7
  941. ciphertoken-0.1.7/ciphertoken/utils.pyi +0 -7
  942. ciphertoken-0.1.7/docs/reference/index.md +0 -26
  943. ciphertoken-0.1.7/site/search.json +0 -1
  944. {ciphertoken-0.1.7 → ciphertoken-0.1.8}/.github/workflows/build.yml +0 -0
  945. {ciphertoken-0.1.7 → ciphertoken-0.1.8}/.github/workflows/docs.yml +0 -0
  946. {ciphertoken-0.1.7 → ciphertoken-0.1.8}/ciphertoken/jwt.py +0 -0
  947. {ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip/_vendor/cachecontrol → ciphertoken-0.1.8/ciphertoken}/py.typed +0 -0
  948. {ciphertoken-0.1.7 → ciphertoken-0.1.8}/ciphertoken/secret.py +0 -0
  949. {ciphertoken-0.1.7 → ciphertoken-0.1.8}/ciphertoken/time.py +0 -0
  950. {ciphertoken-0.1.7 → ciphertoken-0.1.8}/ciphertoken/utils.py +0 -0
  951. /ciphertoken-0.1.7/.venv-py312/lib/python3.12/site-packages/pip-25.0.1.dist-info/REQUESTED → /ciphertoken-0.1.8/docs/.nojekyll +0 -0
  952. {ciphertoken-0.1.7 → ciphertoken-0.1.8}/docs/advanced/async.md +0 -0
  953. {ciphertoken-0.1.7 → ciphertoken-0.1.8/docs}/logo.png +0 -0
  954. {ciphertoken-0.1.7 → ciphertoken-0.1.8}/docs/reference/algorithms.md +0 -0
  955. {ciphertoken-0.1.7 → ciphertoken-0.1.8}/docs/reference/api-lookup.md +0 -0
  956. {ciphertoken-0.1.7 → ciphertoken-0.1.8}/docs/reference/secret.md +0 -0
  957. {ciphertoken-0.1.7 → ciphertoken-0.1.8}/docs/reference/time.md +0 -0
  958. {ciphertoken-0.1.7 → ciphertoken-0.1.8}/docs/reference/utils.md +0 -0
  959. {ciphertoken-0.1.7 → ciphertoken-0.1.8}/site/404.html +0 -0
  960. {ciphertoken-0.1.7 → ciphertoken-0.1.8}/site/advanced/async/index.html +0 -0
  961. {ciphertoken-0.1.7 → ciphertoken-0.1.8}/site/advanced/security/index.html +0 -0
  962. {ciphertoken-0.1.7 → ciphertoken-0.1.8}/site/assets/images/favicon.png +0 -0
  963. {ciphertoken-0.1.7 → ciphertoken-0.1.8}/site/assets/javascripts/LICENSE +0 -0
  964. {ciphertoken-0.1.7 → ciphertoken-0.1.8}/site/assets/javascripts/bundle.6e5f0216.min.js +0 -0
  965. {ciphertoken-0.1.7 → ciphertoken-0.1.8}/site/assets/javascripts/workers/search.e2d2d235.min.js +0 -0
  966. {ciphertoken-0.1.7 → ciphertoken-0.1.8}/site/assets/stylesheets/classic/main.a2001754.min.css +0 -0
  967. {ciphertoken-0.1.7 → ciphertoken-0.1.8}/site/assets/stylesheets/classic/palette.7dc9a0ad.min.css +0 -0
  968. {ciphertoken-0.1.7 → ciphertoken-0.1.8}/site/assets/stylesheets/modern/main.fba56155.min.css +0 -0
  969. {ciphertoken-0.1.7 → ciphertoken-0.1.8}/site/assets/stylesheets/modern/palette.dfe2e883.min.css +0 -0
  970. {ciphertoken-0.1.7 → ciphertoken-0.1.8}/site/getting-started/installation/index.html +0 -0
  971. {ciphertoken-0.1.7 → ciphertoken-0.1.8}/site/getting-started/quick-start/index.html +0 -0
  972. {ciphertoken-0.1.7 → ciphertoken-0.1.8}/site/objects.inv +0 -0
  973. {ciphertoken-0.1.7 → ciphertoken-0.1.8}/site/reference/algorithms/index.html +0 -0
  974. {ciphertoken-0.1.7 → ciphertoken-0.1.8}/site/reference/api-lookup/index.html +0 -0
  975. {ciphertoken-0.1.7 → ciphertoken-0.1.8}/site/reference/ciphertoken/index.html +0 -0
  976. {ciphertoken-0.1.7 → ciphertoken-0.1.8}/site/reference/jwt/index.html +0 -0
  977. {ciphertoken-0.1.7 → ciphertoken-0.1.8}/site/reference/secret/index.html +0 -0
  978. {ciphertoken-0.1.7 → ciphertoken-0.1.8}/site/reference/time/index.html +0 -0
  979. {ciphertoken-0.1.7 → ciphertoken-0.1.8}/site/reference/utils/index.html +0 -0
  980. {ciphertoken-0.1.7 → ciphertoken-0.1.8}/site/sitemap.xml +0 -0
  981. {ciphertoken-0.1.7 → ciphertoken-0.1.8}/src/utils.rs +0 -0
@@ -0,0 +1,18 @@
1
+ venv
2
+ /.env
3
+ r.txt
4
+ /target/
5
+ /dist/
6
+ /*.whl
7
+ /*.tar.gz
8
+ *.so
9
+ *.abi3.so
10
+ ciphertoken/*.abi3.so
11
+ .venv-py312/
12
+ .venv/
13
+ .venv
14
+ __pycache__/
15
+ __pycache__/*
16
+ .pytest_cache
17
+ .ruff_cache
18
+ .ruff_cache/
@@ -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,6 @@
1
+ {
2
+ "python.defaultInterpreterPath": "./.venv/bin/python",
3
+ "python.analysis.autoCompleteExtraPaths": ["./ciphertoken"],
4
+ "python.analysis.stubPath": "./typings",
5
+ "python.languageServer": "Pylance"
6
+ }
@@ -56,7 +56,7 @@ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
56
56
 
57
57
  [[package]]
58
58
  name = "ciphertoken"
59
- version = "0.1.7"
59
+ version = "0.1.8"
60
60
  dependencies = [
61
61
  "base64 0.21.7",
62
62
  "jsonwebtoken",
@@ -1,6 +1,6 @@
1
1
  [package]
2
2
  name = "ciphertoken"
3
- version = "0.1.7"
3
+ version = "0.1.8"
4
4
  edition = "2021"
5
5
  readme = "README.md"
6
6
 
@@ -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.
@@ -1,10 +1,15 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: ciphertoken
3
- Version: 0.1.7
3
+ Version: 0.1.8
4
4
  Classifier: Programming Language :: Python :: 3
5
5
  Classifier: Programming Language :: Python :: 3 :: Only
6
6
  Classifier: Programming Language :: Rust
7
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
8
13
  Summary: High-performance token and crypto utilities written in Rust with PyO3
9
14
  Author: Cipher-Unit
10
15
  License: MIT
@@ -13,6 +18,11 @@ Description-Content-Type: text/markdown; charset=UTF-8; variant=GFM
13
18
 
14
19
  <img src="https://github.com/cipherunits/CipherToken/blob/main/logo.png" width=100>
15
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
+
16
26
  # CipherToken
17
27
 
18
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**.
@@ -1,5 +1,10 @@
1
1
  <img src="https://github.com/cipherunits/CipherToken/blob/main/logo.png" width=100>
2
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
+
3
8
  # CipherToken
4
9
 
5
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**.
@@ -0,0 +1,7 @@
1
+
2
+ __pycache__
3
+ __pycache__/*
4
+
5
+ ciphertoken.abi3.so
6
+ *.abi3.so
7
+
@@ -1,13 +1,36 @@
1
1
  """Public Python API for ciphertoken."""
2
2
 
3
- from .algorithms import EDDSA, ES256, ES384, HS256, HS384, HS512, PS256, PS384, PS512, RS256, RS384, RS512
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
+ )
4
17
  from .ciphertoken import CipherToken, is_jwt_format, validate_jwt_format
5
- from .jwt import TOKEN_ACCESS as JWT_TOKEN_ACCESS, TOKEN_REFRESH as JWT_TOKEN_REFRESH
6
- from .jwt import access as jwt_access, refresh as jwt_refresh, rotation as jwt_rotation
7
- from .jwt import access_async as jwt_access_async, refresh_async as jwt_refresh_async, rotation_async as jwt_rotation_async
8
- from .secret import generate_hmac_secret, generate_hmac_secret_async, generate_rsa_keypair, secret_key, secret_key_with_size
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
+ )
9
32
  from .time import days, hours, minutes, now, seconds, weeks
10
- from .utils import DEFAULT_SECRET_SIZE, MIN_SECRET_SIZE, TOKEN_ACCESS, TOKEN_REFRESH
33
+ from .utils import DEFAULT_SECRET_SIZE, MIN_SECRET_SIZE
11
34
 
12
35
  __all__ = [
13
36
  "CipherToken",
@@ -46,6 +69,4 @@ __all__ = [
46
69
  "weeks",
47
70
  "DEFAULT_SECRET_SIZE",
48
71
  "MIN_SECRET_SIZE",
49
- "TOKEN_ACCESS",
50
- "TOKEN_REFRESH",
51
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__ = ["HS256", "HS384", "HS512", "RS256", "RS384", "RS512", "ES256", "ES384", "PS256", "PS384", "PS512", "EDDSA"]
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
+ ]
@@ -1,23 +1,48 @@
1
1
  from typing import Any, Dict, Optional, Tuple
2
2
 
3
+ # CipherToken class stub
3
4
  class CipherToken:
4
- def __init__(self, secret: str, algorithm: str, access_ttl: int, refresh_ttl: int) -> None: ...
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: ...
5
19
 
6
- def payload(self, payload: Optional[Dict[str, Any]] = None) -> str: ...
7
20
  def access(self, payload: Optional[Dict[str, Any]] = None) -> str: ...
8
21
  def refresh(self, payload: Optional[Dict[str, Any]] = None) -> str: ...
9
22
  def decode(self, token: str) -> Dict[str, Any]: ...
10
23
  def verify(self, token: str) -> bool: ...
11
- def rotation(self, refresh_token: str, payload: Optional[Dict[str, Any]] = None) -> Tuple[str, str]: ...
12
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]: ...
13
28
  def remaining_time(self, token: str) -> Optional[int]: ...
14
29
  def algorithm_name(self) -> str: ...
15
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
+
16
38
  async def access_async(self, payload: Optional[Dict[str, Any]] = None) -> str: ...
17
39
  async def refresh_async(self, payload: Optional[Dict[str, Any]] = None) -> str: ...
18
40
  async def decode_async(self, token: str) -> Dict[str, Any]: ...
19
41
  async def verify_async(self, token: str) -> bool: ...
20
- async def rotation_async(self, refresh_token: str, payload: Optional[Dict[str, Any]] = None) -> Tuple[str, str]: ...
42
+ async def rotation_async(
43
+ self, refresh_token: str, payload: Optional[Dict[str, Any]] = None
44
+ ) -> Tuple[str, str]: ...
45
+
21
46
 
22
47
  def is_jwt_format(token: str) -> bool: ...
23
- def validate_jwt_format(token: str) -> bool: ...
48
+ def validate_jwt_format(token: str) -> bool: ...
@@ -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 Optional, Tuple
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: Optional[int] = 2048) -> Tuple[str, str]: ...
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]: ...
@@ -1,11 +1,23 @@
1
+ ---
2
+ title: Advanced Guide - CipherToken
3
+ description: Advanced topics for CipherToken including async usage and security best practices.
4
+ keywords: advanced, async, security, jwt, rust, python
5
+ image: https://cipherunits.github.io/CipherToken/logo.png
6
+ ---
7
+
1
8
  # Advanced Guide
2
9
 
3
10
  Production topics for **CipherToken** — the next-generation token engine.
4
11
 
5
12
  ## Topics
6
13
 
7
- - [Async Usage](async.md) — Full async API with Tokio under the hood
8
- - [Security Best Practices](security.md) — Key management, rotation, algorithm selection
14
+ <div class="grid cards" markdown>
15
+
16
+ - :fontawesome-solid-bolt: [Async Usage](async.md)
17
+
18
+ - :fontawesome-solid-shield: [Security Best Practices](security.md)
19
+
20
+ </div>
9
21
 
10
22
  ---
11
23
 
@@ -1,3 +1,10 @@
1
+ ---
2
+ title: Security Best Practices - CipherToken
3
+ description: Security best practices for JWT tokens. Learn about secret management, key rotation, algorithm selection, and token expiry.
4
+ keywords: security, jwt, best-practices, cryptography, rust, python
5
+ image: https://cipherunits.github.io/CipherToken/logo.png
6
+ ---
7
+
1
8
  # Advanced Guide — Security
2
9
 
3
10
  Follow these security best practices to keep your token infrastructure safe. Part of **[Cipher-Unit](https://cipherunit.xyz/)**.
@@ -1,3 +1,10 @@
1
+ ---
2
+ title: Getting Started - CipherToken
3
+ description: Next-generation JWT token management library built with Rust. Complete token lifecycle with high performance.
4
+ keywords: jwt, getting-started, rust, python, cryptography, authentication
5
+ image: https://cipherunits.github.io/CipherToken/logo.png
6
+ ---
7
+
1
8
  # Getting Started
2
9
 
3
10
  Welcome to **CipherToken** — the next-generation token management library.
@@ -50,8 +57,10 @@ Developed and maintained by **[Cipher-Unit](https://cipherunit.xyz/)**.
50
57
 
51
58
  <div class="grid cards" markdown>
52
59
 
53
- - [Installation](installation.md) — pip, poetry, and other package managers
54
- - [Quick Start](quick-start.md) — Your first tokens in under 2 minutes
55
- - [API Reference](../reference/index.md) — Complete API documentation
60
+ - :fontawesome-solid-download: [Installation](installation.md)
61
+
62
+ - :fontawesome-solid-bolt: [Quick Start](quick-start.md)
63
+
64
+ - :fontawesome-solid-book: [API Reference](../reference/index.md)
56
65
 
57
66
  </div>
@@ -1,3 +1,10 @@
1
+ ---
2
+ title: Installation - CipherToken
3
+ description: Install CipherToken, the high-performance Python JWT library built with Rust. Supports pip, poetry, uv, pdm, and pipx.
4
+ keywords: jwt, install, python, rust, cryptography, pip, poetry, pipx
5
+ image: https://cipherunits.github.io/CipherToken/logo.png
6
+ ---
7
+
1
8
  # Installation
2
9
 
3
10
  Choose your preferred method to install **CipherToken**.
@@ -1,3 +1,10 @@
1
+ ---
2
+ title: Quick Start - CipherToken JWT Library
3
+ description: Generate and manage JWTs in under 2 minutes. Learn to create, verify, rotate tokens and generate secure keys with CipherToken.
4
+ keywords: jwt, quick-start, tutorial, python, rust, authentication, token
5
+ image: https://cipherunits.github.io/CipherToken/logo.png
6
+ ---
7
+
1
8
  # Quick Start
2
9
 
3
10
  Generate and manage JWTs in under 2 minutes with **CipherToken**.
@@ -20,7 +27,7 @@ token = CipherToken(
20
27
  ```
21
28
 
22
29
  !!! warning "Never hardcode secrets"
23
- Use environment variables or a secret manager in production. See the [Security guide](../advanced/security.md).
30
+ Use environment variables or a secret manager in production. See the [Security guide](../advanced/security.md).
24
31
 
25
32
  ---
26
33
 
@@ -0,0 +1,71 @@
1
+ ---
2
+ title: CipherToken - High-performance JWT and Cryptography Library
3
+ description: Fast Python JWT library built with Rust. Secure token generation, validation, and key management for authentication systems.
4
+ keywords: jwt, python, rust, cryptography, authentication, token, security, hmac, rsa
5
+ image: https://cipherunits.github.io/CipherToken/logo.png
6
+ ---
7
+
8
+ # CipherToken
9
+
10
+ **CipherToken** is a next-generation token engine for developers who demand speed, security, and reliability. Unlike conventional JWT libraries, CipherToken delivers a complete token lifecycle — from creation and decoding to rotation and expiry tracking — all backed by the raw performance of **Rust**.
11
+
12
+ ---
13
+
14
+ ## Why CipherToken?
15
+
16
+ | | Conventional JWT Libraries | CipherToken |
17
+ |---|---|---|
18
+ | **Language** | Pure Python | Rust + PyO3 |
19
+ | **Performance** | Interpreted overhead | Near-native speed |
20
+ | **Async** | Often limited or absent | Fully async (Tokio) |
21
+ | **Token lifecycle** | Generate / verify | Create · Decode · Verify · Rotate · Inspect |
22
+ | **Key management** | Manual | Built-in HMAC + RSA key generation |
23
+ | **Expiry tracking** | Manual | Built-in (`remaining_time`) |
24
+
25
+ ---
26
+
27
+ ## Quick Install
28
+
29
+ ```bash
30
+ pip install ciphertoken
31
+ ```
32
+
33
+ ---
34
+
35
+ ## Quick Example
36
+
37
+ ```python
38
+ from ciphertoken import CipherToken
39
+ from ciphertoken.algorithms import HS256
40
+ from ciphertoken.time import minutes, days
41
+ from ciphertoken.jwt import access, refresh, rotation
42
+
43
+ token = CipherToken(
44
+ secret="your-strong-secret-key",
45
+ algorithm=HS256,
46
+ access_ttl=minutes(10),
47
+ refresh_ttl=days(7),
48
+ )
49
+
50
+ access_token = access(token, payload={"user_id": 42})
51
+ refresh_token = refresh(token, payload={"user_id": 42})
52
+ new_access, new_refresh = rotation(token, refresh_token)
53
+
54
+ print(token.verify(access_token)) # True
55
+ ```
56
+
57
+ ---
58
+
59
+ ## Get Started
60
+
61
+ <div class="grid cards" markdown>
62
+
63
+ - :fontawesome-solid-download: [Installation](getting-started/installation.md) — pip, poetry, pdm, and more
64
+
65
+ - :fontawesome-solid-bolt: [Quick Start](getting-started/quick-start.md) — Your first tokens in under 2 minutes
66
+
67
+ - :fontawesome-solid-book: [API Reference](reference/index.md) — Complete module documentation
68
+
69
+ - :fontawesome-solid-gear: [Advanced Guide](advanced/index.md) — Production best practices
70
+
71
+ </div>
@@ -1,3 +1,10 @@
1
+ ---
2
+ title: CipherToken API Reference
3
+ description: Complete API reference for the CipherToken class. Methods for signing, verification, decoding, rotation, and expiry inspection.
4
+ keywords: ciphertoken, api, jwt, python, rust, reference
5
+ image: https://cipherunits.github.io/CipherToken/logo.png
6
+ ---
7
+
1
8
  # API Reference — CipherToken
2
9
 
3
10
  The `CipherToken` class is the core token engine. It handles signing, verification, decoding, rotation, and expiry inspection for both **access** and **refresh** tokens.