transcrypto 2.3.1__tar.gz → 2.3.2__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.
- {transcrypto-2.3.1 → transcrypto-2.3.2}/PKG-INFO +4 -4
- {transcrypto-2.3.1 → transcrypto-2.3.2}/pyproject.toml +7 -7
- {transcrypto-2.3.1 → transcrypto-2.3.2}/src/transcrypto/__init__.py +1 -1
- {transcrypto-2.3.1 → transcrypto-2.3.2}/LICENSE +0 -0
- {transcrypto-2.3.1 → transcrypto-2.3.2}/README.md +0 -0
- {transcrypto-2.3.1 → transcrypto-2.3.2}/src/transcrypto/cli/__init__.py +0 -0
- {transcrypto-2.3.1 → transcrypto-2.3.2}/src/transcrypto/cli/aeshash.py +0 -0
- {transcrypto-2.3.1 → transcrypto-2.3.2}/src/transcrypto/cli/bidsecret.py +0 -0
- {transcrypto-2.3.1 → transcrypto-2.3.2}/src/transcrypto/cli/clibase.py +0 -0
- {transcrypto-2.3.1 → transcrypto-2.3.2}/src/transcrypto/cli/intmath.py +0 -0
- {transcrypto-2.3.1 → transcrypto-2.3.2}/src/transcrypto/cli/publicalgos.py +0 -0
- {transcrypto-2.3.1 → transcrypto-2.3.2}/src/transcrypto/core/__init__.py +0 -0
- {transcrypto-2.3.1 → transcrypto-2.3.2}/src/transcrypto/core/aes.py +0 -0
- {transcrypto-2.3.1 → transcrypto-2.3.2}/src/transcrypto/core/bid.py +0 -0
- {transcrypto-2.3.1 → transcrypto-2.3.2}/src/transcrypto/core/constants.py +0 -0
- {transcrypto-2.3.1 → transcrypto-2.3.2}/src/transcrypto/core/dsa.py +0 -0
- {transcrypto-2.3.1 → transcrypto-2.3.2}/src/transcrypto/core/elgamal.py +0 -0
- {transcrypto-2.3.1 → transcrypto-2.3.2}/src/transcrypto/core/hashes.py +0 -0
- {transcrypto-2.3.1 → transcrypto-2.3.2}/src/transcrypto/core/key.py +0 -0
- {transcrypto-2.3.1 → transcrypto-2.3.2}/src/transcrypto/core/modmath.py +0 -0
- {transcrypto-2.3.1 → transcrypto-2.3.2}/src/transcrypto/core/rsa.py +0 -0
- {transcrypto-2.3.1 → transcrypto-2.3.2}/src/transcrypto/core/sss.py +0 -0
- {transcrypto-2.3.1 → transcrypto-2.3.2}/src/transcrypto/profiler.py +0 -0
- {transcrypto-2.3.1 → transcrypto-2.3.2}/src/transcrypto/py.typed +0 -0
- {transcrypto-2.3.1 → transcrypto-2.3.2}/src/transcrypto/transcrypto.py +0 -0
- {transcrypto-2.3.1 → transcrypto-2.3.2}/src/transcrypto/utils/__init__.py +0 -0
- {transcrypto-2.3.1 → transcrypto-2.3.2}/src/transcrypto/utils/base.py +0 -0
- {transcrypto-2.3.1 → transcrypto-2.3.2}/src/transcrypto/utils/config.py +0 -0
- {transcrypto-2.3.1 → transcrypto-2.3.2}/src/transcrypto/utils/human.py +0 -0
- {transcrypto-2.3.1 → transcrypto-2.3.2}/src/transcrypto/utils/logging.py +0 -0
- {transcrypto-2.3.1 → transcrypto-2.3.2}/src/transcrypto/utils/saferandom.py +0 -0
- {transcrypto-2.3.1 → transcrypto-2.3.2}/src/transcrypto/utils/stats.py +0 -0
- {transcrypto-2.3.1 → transcrypto-2.3.2}/src/transcrypto/utils/timer.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: transcrypto
|
|
3
|
-
Version: 2.3.
|
|
3
|
+
Version: 2.3.2
|
|
4
4
|
Summary: Basic crypto primitives, not intended for actual use, but as a companion to --Criptografia, Métodos e Algoritmos--
|
|
5
5
|
License-Expression: Apache-2.0
|
|
6
6
|
License-File: LICENSE
|
|
@@ -17,9 +17,9 @@ Classifier: Topic :: Utilities
|
|
|
17
17
|
Classifier: Topic :: Security :: Cryptography
|
|
18
18
|
Requires-Dist: cryptography (>=46.0)
|
|
19
19
|
Requires-Dist: gmpy2 (>=2.3)
|
|
20
|
-
Requires-Dist: platformdirs (>=4.
|
|
21
|
-
Requires-Dist: rich (>=14.3
|
|
22
|
-
Requires-Dist: typer (>=0.
|
|
20
|
+
Requires-Dist: platformdirs (>=4.9)
|
|
21
|
+
Requires-Dist: rich (>=14.3.3)
|
|
22
|
+
Requires-Dist: typer (>=0.24)
|
|
23
23
|
Requires-Dist: zstandard (>=0.25)
|
|
24
24
|
Project-URL: Changelog, https://github.com/balparda/transcrypto/blob/main/CHANGELOG.md
|
|
25
25
|
Project-URL: Homepage, https://github.com/balparda/transcrypto
|
|
@@ -12,7 +12,7 @@ build-backend = "poetry.core.masonry.api"
|
|
|
12
12
|
[project]
|
|
13
13
|
|
|
14
14
|
name = "transcrypto"
|
|
15
|
-
version = "2.3.
|
|
15
|
+
version = "2.3.2" # also update src/transcrypto/__init__.py
|
|
16
16
|
|
|
17
17
|
description = "Basic crypto primitives, not intended for actual use, but as a companion to --Criptografia, Métodos e Algoritmos--"
|
|
18
18
|
license = "Apache-2.0"
|
|
@@ -59,9 +59,9 @@ license-files = [ "LICENSE" ]
|
|
|
59
59
|
|
|
60
60
|
dependencies = [
|
|
61
61
|
|
|
62
|
-
"typer>=0.
|
|
63
|
-
"rich>=14.3
|
|
64
|
-
"platformdirs>=4.
|
|
62
|
+
"typer>=0.24", # if this changes, also change: [tool.poetry.dependencies]
|
|
63
|
+
"rich>=14.3.3", # 14.3.2 hangs GitHub CI pipeline
|
|
64
|
+
"platformdirs>=4.9",
|
|
65
65
|
|
|
66
66
|
# best place for project dependencies, if possible
|
|
67
67
|
# development-only dependencies go in the [tool.poetry.group.dev.dependencies] section below
|
|
@@ -117,12 +117,12 @@ include = [
|
|
|
117
117
|
# prefer to add dependencies inside the [project.dependencies] section
|
|
118
118
|
|
|
119
119
|
python = "^3.12" # if version changes, remember to change README.md
|
|
120
|
-
typer = { version = "^0.
|
|
120
|
+
typer = { version = "^0.24", extras = ["all"] }
|
|
121
121
|
|
|
122
122
|
[tool.poetry.group.dev.dependencies]
|
|
123
123
|
|
|
124
124
|
# basic, all projects should have
|
|
125
|
-
ruff = "~0.15.
|
|
125
|
+
ruff = "~0.15.2"
|
|
126
126
|
mypy = "~1.19.1"
|
|
127
127
|
pytest = "^9.0"
|
|
128
128
|
pytest-cov = "^7.0"
|
|
@@ -130,7 +130,7 @@ pytest-flakefinder = "^1.1"
|
|
|
130
130
|
pyright = "^1.1"
|
|
131
131
|
pre-commit = "^4.5"
|
|
132
132
|
pyinstrument = "^5.1"
|
|
133
|
-
typeguard = "^4.
|
|
133
|
+
typeguard = "^4.5"
|
|
134
134
|
|
|
135
135
|
# project-specific dev-only
|
|
136
136
|
gmpy2-stubs = "^2.2"
|
|
@@ -3,5 +3,5 @@
|
|
|
3
3
|
"""Basic cryptography primitives implementation."""
|
|
4
4
|
|
|
5
5
|
__all__: list[str] = ['__author__', '__version__']
|
|
6
|
-
__version__ = '2.3.
|
|
6
|
+
__version__ = '2.3.2' # remember to also update pyproject.toml
|
|
7
7
|
__author__ = 'Daniel Balparda <balparda@github.com>'
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|