transcrypto 1.8.0__py3-none-any.whl → 2.0.3__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.
- transcrypto/__init__.py +1 -1
- transcrypto/cli/aeshash.py +14 -12
- transcrypto/cli/bidsecret.py +19 -16
- transcrypto/cli/clibase.py +22 -142
- transcrypto/cli/intmath.py +24 -21
- transcrypto/cli/publicalgos.py +28 -26
- transcrypto/core/__init__.py +3 -0
- transcrypto/{aes.py → core/aes.py} +17 -29
- transcrypto/core/bid.py +161 -0
- transcrypto/{dsa.py → core/dsa.py} +28 -27
- transcrypto/{elgamal.py → core/elgamal.py} +33 -32
- transcrypto/core/hashes.py +96 -0
- transcrypto/core/key.py +735 -0
- transcrypto/{modmath.py → core/modmath.py} +91 -17
- transcrypto/{rsa.py → core/rsa.py} +51 -50
- transcrypto/{sss.py → core/sss.py} +27 -26
- transcrypto/profiler.py +25 -11
- transcrypto/transcrypto.py +25 -15
- transcrypto/utils/__init__.py +3 -0
- transcrypto/utils/base.py +72 -0
- transcrypto/utils/human.py +278 -0
- transcrypto/utils/logging.py +139 -0
- transcrypto/utils/saferandom.py +102 -0
- transcrypto/utils/stats.py +360 -0
- transcrypto/utils/timer.py +175 -0
- {transcrypto-1.8.0.dist-info → transcrypto-2.0.3.dist-info}/METADATA +101 -101
- transcrypto-2.0.3.dist-info/RECORD +33 -0
- {transcrypto-1.8.0.dist-info → transcrypto-2.0.3.dist-info}/WHEEL +1 -1
- transcrypto/base.py +0 -1637
- transcrypto-1.8.0.dist-info/RECORD +0 -23
- /transcrypto/{constants.py → core/constants.py} +0 -0
- {transcrypto-1.8.0.dist-info → transcrypto-2.0.3.dist-info}/entry_points.txt +0 -0
- {transcrypto-1.8.0.dist-info → transcrypto-2.0.3.dist-info}/licenses/LICENSE +0 -0
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
transcrypto/__init__.py,sha256=xSqLQi3EdJgFHKoIIyyWpiVrhzcp52elZFZwwnBzgaE,338
|
|
2
|
-
transcrypto/aes.py,sha256=Sgu02D_994B05dRiJfFy2lvbgWZdP2A9ivzMQntlm7g,14986
|
|
3
|
-
transcrypto/base.py,sha256=lcjD_uCbXpGDgson4KhCPYqqQKb48o4Ek3glqLASbMc,53838
|
|
4
|
-
transcrypto/cli/__init__.py,sha256=VyfdjELABx6yaiAQrFlK7WDa96j2O12umoy1WunqbLw,134
|
|
5
|
-
transcrypto/cli/aeshash.py,sha256=4aWKSwaKmIJKtVpqlyfOQS4OOYl8MYw609m6e3XXLvU,13713
|
|
6
|
-
transcrypto/cli/bidsecret.py,sha256=qZj2xNzAE91YAzYFEm5Xn_T9LyEd54Jv64zsZURepNY,12541
|
|
7
|
-
transcrypto/cli/clibase.py,sha256=-e07YnVdCpSFqgNkGNR7FjM4wXftRuPYhEPRq5uWs6I,10059
|
|
8
|
-
transcrypto/cli/intmath.py,sha256=PAq1AKT0CLl7Z0UqHiSPVlGUfr3HEosqkNVIcDfig2A,14384
|
|
9
|
-
transcrypto/cli/publicalgos.py,sha256=21xUQRXhxpfr47BE-S7jD2N3UK4DxZNrVovoClO8m4A,31366
|
|
10
|
-
transcrypto/constants.py,sha256=qIdXZ90LYZdu5VZ_hKizU04j_wLA0Na0-mSUZ5pOdiY,191233
|
|
11
|
-
transcrypto/dsa.py,sha256=6FW9YtJxL77CZahZ9hIEeoA2imJ24yxK_oao-gOJTME,19933
|
|
12
|
-
transcrypto/elgamal.py,sha256=N-DB0m1BoOjxmqo-qeBTbBi9NPOCigCEJsh0bmcdYgM,20522
|
|
13
|
-
transcrypto/modmath.py,sha256=IwWHlTdCwq87xVcpwL8nbydvKjxgZe7hPTC9aKUF-Y4,21259
|
|
14
|
-
transcrypto/profiler.py,sha256=pVTc_aNhukaSHs60QdWST_sf2mji6FslBiCmuC9tSPw,7368
|
|
15
|
-
transcrypto/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
16
|
-
transcrypto/rsa.py,sha256=0MmsfHNTOZKxmqq0LlezoBTs5VzWVrRHqp1oLaVSo2Q,24113
|
|
17
|
-
transcrypto/sss.py,sha256=5-U1aWEruJYdv3-4wWxT5_cs7PGaj27OD0eRYD_k7OY,16924
|
|
18
|
-
transcrypto/transcrypto.py,sha256=6qXHJpNx5_LTIdEA4XFoVD9dcpdcS3zsv0LUUh63740,16326
|
|
19
|
-
transcrypto-1.8.0.dist-info/METADATA,sha256=r0DjPjZZxFBwbHL2sjah-Ov3ODDw_kjc-DHZAKXCN-8,39102
|
|
20
|
-
transcrypto-1.8.0.dist-info/WHEEL,sha256=3ny-bZhpXrU6vSQ1UPG34FoxZBp3lVcvK0LkgUz6VLk,88
|
|
21
|
-
transcrypto-1.8.0.dist-info/entry_points.txt,sha256=HXJ1yXZJT_9OhLJgEhv2toOpxwhDaIU2HuW91MTJDIg,93
|
|
22
|
-
transcrypto-1.8.0.dist-info/licenses/LICENSE,sha256=DVQuDIgE45qn836wDaWnYhSdxoLXgpRRKH4RuTjpRZQ,10174
|
|
23
|
-
transcrypto-1.8.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|