transcrypto 1.7.0__py3-none-any.whl → 2.0.0__py3-none-any.whl

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 (34) hide show
  1. transcrypto/__init__.py +1 -1
  2. transcrypto/cli/__init__.py +3 -0
  3. transcrypto/cli/aeshash.py +370 -0
  4. transcrypto/cli/bidsecret.py +336 -0
  5. transcrypto/cli/clibase.py +183 -0
  6. transcrypto/cli/intmath.py +429 -0
  7. transcrypto/cli/publicalgos.py +878 -0
  8. transcrypto/core/__init__.py +3 -0
  9. transcrypto/{aes.py → core/aes.py} +17 -29
  10. transcrypto/core/bid.py +161 -0
  11. transcrypto/{dsa.py → core/dsa.py} +28 -27
  12. transcrypto/{elgamal.py → core/elgamal.py} +33 -32
  13. transcrypto/core/hashes.py +96 -0
  14. transcrypto/core/key.py +735 -0
  15. transcrypto/{modmath.py → core/modmath.py} +91 -17
  16. transcrypto/{rsa.py → core/rsa.py} +51 -50
  17. transcrypto/{sss.py → core/sss.py} +27 -26
  18. transcrypto/profiler.py +29 -13
  19. transcrypto/transcrypto.py +60 -1996
  20. transcrypto/utils/__init__.py +3 -0
  21. transcrypto/utils/base.py +72 -0
  22. transcrypto/utils/human.py +278 -0
  23. transcrypto/utils/logging.py +139 -0
  24. transcrypto/utils/saferandom.py +102 -0
  25. transcrypto/utils/stats.py +360 -0
  26. transcrypto/utils/timer.py +175 -0
  27. {transcrypto-1.7.0.dist-info → transcrypto-2.0.0.dist-info}/METADATA +111 -109
  28. transcrypto-2.0.0.dist-info/RECORD +33 -0
  29. transcrypto/base.py +0 -1918
  30. transcrypto-1.7.0.dist-info/RECORD +0 -17
  31. /transcrypto/{constants.py → core/constants.py} +0 -0
  32. {transcrypto-1.7.0.dist-info → transcrypto-2.0.0.dist-info}/WHEEL +0 -0
  33. {transcrypto-1.7.0.dist-info → transcrypto-2.0.0.dist-info}/entry_points.txt +0 -0
  34. {transcrypto-1.7.0.dist-info → transcrypto-2.0.0.dist-info}/licenses/LICENSE +0 -0
@@ -1,17 +0,0 @@
1
- transcrypto/__init__.py,sha256=EgL-1w0DMlvXD3_aON4AJeBukDbBXhsMHwINtafJsgA,338
2
- transcrypto/aes.py,sha256=Sgu02D_994B05dRiJfFy2lvbgWZdP2A9ivzMQntlm7g,14986
3
- transcrypto/base.py,sha256=yZ95VgRFXkfWdzGygP1fN-sTTgzQ6uFsFJvPSXjzltI,63064
4
- transcrypto/constants.py,sha256=qIdXZ90LYZdu5VZ_hKizU04j_wLA0Na0-mSUZ5pOdiY,191233
5
- transcrypto/dsa.py,sha256=6FW9YtJxL77CZahZ9hIEeoA2imJ24yxK_oao-gOJTME,19933
6
- transcrypto/elgamal.py,sha256=N-DB0m1BoOjxmqo-qeBTbBi9NPOCigCEJsh0bmcdYgM,20522
7
- transcrypto/modmath.py,sha256=IwWHlTdCwq87xVcpwL8nbydvKjxgZe7hPTC9aKUF-Y4,21259
8
- transcrypto/profiler.py,sha256=q5TA3uLpL5dPZEcTJDNBQIKbx513NvQWS3TK6Vug7oo,7287
9
- transcrypto/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
10
- transcrypto/rsa.py,sha256=0MmsfHNTOZKxmqq0LlezoBTs5VzWVrRHqp1oLaVSo2Q,24113
11
- transcrypto/sss.py,sha256=5-U1aWEruJYdv3-4wWxT5_cs7PGaj27OD0eRYD_k7OY,16924
12
- transcrypto/transcrypto.py,sha256=z6dQRSWJKTBmxVvrd0AUQnkhT6d9ho0vvLROCR8jDYs,83955
13
- transcrypto-1.7.0.dist-info/METADATA,sha256=TRINhe2XXndRcg9LTq9M_EO5RL6Hp1lNCVtltcfgYT8,39000
14
- transcrypto-1.7.0.dist-info/WHEEL,sha256=3ny-bZhpXrU6vSQ1UPG34FoxZBp3lVcvK0LkgUz6VLk,88
15
- transcrypto-1.7.0.dist-info/entry_points.txt,sha256=HXJ1yXZJT_9OhLJgEhv2toOpxwhDaIU2HuW91MTJDIg,93
16
- transcrypto-1.7.0.dist-info/licenses/LICENSE,sha256=DVQuDIgE45qn836wDaWnYhSdxoLXgpRRKH4RuTjpRZQ,10174
17
- transcrypto-1.7.0.dist-info/RECORD,,
File without changes