ciphertoken 0.1.6__tar.gz → 0.1.8__tar.gz

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