transcrypto 1.1.1__tar.gz → 1.1.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-1.1.1/src/transcrypto.egg-info → transcrypto-1.1.2}/PKG-INFO +2 -2
- {transcrypto-1.1.1 → transcrypto-1.1.2}/README.md +1 -1
- {transcrypto-1.1.1 → transcrypto-1.1.2}/pyproject.toml +1 -1
- {transcrypto-1.1.1 → transcrypto-1.1.2}/src/transcrypto/base.py +1 -1
- {transcrypto-1.1.1 → transcrypto-1.1.2/src/transcrypto.egg-info}/PKG-INFO +2 -2
- {transcrypto-1.1.1 → transcrypto-1.1.2}/LICENSE +0 -0
- {transcrypto-1.1.1 → transcrypto-1.1.2}/setup.cfg +0 -0
- {transcrypto-1.1.1 → transcrypto-1.1.2}/src/transcrypto/__init__.py +0 -0
- {transcrypto-1.1.1 → transcrypto-1.1.2}/src/transcrypto/aes.py +0 -0
- {transcrypto-1.1.1 → transcrypto-1.1.2}/src/transcrypto/dsa.py +0 -0
- {transcrypto-1.1.1 → transcrypto-1.1.2}/src/transcrypto/elgamal.py +0 -0
- {transcrypto-1.1.1 → transcrypto-1.1.2}/src/transcrypto/modmath.py +0 -0
- {transcrypto-1.1.1 → transcrypto-1.1.2}/src/transcrypto/py.typed +0 -0
- {transcrypto-1.1.1 → transcrypto-1.1.2}/src/transcrypto/rsa.py +0 -0
- {transcrypto-1.1.1 → transcrypto-1.1.2}/src/transcrypto/sss.py +0 -0
- {transcrypto-1.1.1 → transcrypto-1.1.2}/src/transcrypto/transcrypto.py +0 -0
- {transcrypto-1.1.1 → transcrypto-1.1.2}/src/transcrypto.egg-info/SOURCES.txt +0 -0
- {transcrypto-1.1.1 → transcrypto-1.1.2}/src/transcrypto.egg-info/dependency_links.txt +0 -0
- {transcrypto-1.1.1 → transcrypto-1.1.2}/src/transcrypto.egg-info/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: transcrypto
|
|
3
|
-
Version: 1.1.
|
|
3
|
+
Version: 1.1.2
|
|
4
4
|
Summary: Basic crypto primitives, not intended for actual use, but as a companion to --Criptografia, Métodos e Algoritmos--
|
|
5
5
|
Author-email: Daniel Balparda <balparda@github.com>
|
|
6
6
|
License-Expression: Apache-2.0
|
|
@@ -18,7 +18,7 @@ Dynamic: license-file
|
|
|
18
18
|
|
|
19
19
|
# TransCrypto
|
|
20
20
|
|
|
21
|
-
Basic
|
|
21
|
+
Basic cryptography primitives implementation, a companion to *"Criptografia, Métodos e Algoritmos"*.
|
|
22
22
|
|
|
23
23
|
Started in July/2025, by Daniel Balparda. Since version 1.0.2 it is PyPI package:
|
|
24
24
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# TransCrypto
|
|
2
2
|
|
|
3
|
-
Basic
|
|
3
|
+
Basic cryptography primitives implementation, a companion to *"Criptografia, Métodos e Algoritmos"*.
|
|
4
4
|
|
|
5
5
|
Started in July/2025, by Daniel Balparda. Since version 1.0.2 it is PyPI package:
|
|
6
6
|
|
|
@@ -8,7 +8,7 @@ build-backend = "setuptools.build_meta"
|
|
|
8
8
|
|
|
9
9
|
[project]
|
|
10
10
|
name = "transcrypto"
|
|
11
|
-
version = "1.1.
|
|
11
|
+
version = "1.1.2"
|
|
12
12
|
description = "Basic crypto primitives, not intended for actual use, but as a companion to --Criptografia, Métodos e Algoritmos--"
|
|
13
13
|
readme = "README.md"
|
|
14
14
|
license = "Apache-2.0"
|
|
@@ -24,7 +24,7 @@ from typing import Any, Callable, final, MutableSequence, Self, TypeVar
|
|
|
24
24
|
import zstandard
|
|
25
25
|
|
|
26
26
|
__author__ = 'balparda@github.com'
|
|
27
|
-
__version__ = '1.1.
|
|
27
|
+
__version__ = '1.1.2' # v1.1.2, 2025-08-29
|
|
28
28
|
__version_tuple__: tuple[int, ...] = tuple(int(v) for v in __version__.split('.'))
|
|
29
29
|
|
|
30
30
|
# MIN_TM = int( # minimum allowed timestamp
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: transcrypto
|
|
3
|
-
Version: 1.1.
|
|
3
|
+
Version: 1.1.2
|
|
4
4
|
Summary: Basic crypto primitives, not intended for actual use, but as a companion to --Criptografia, Métodos e Algoritmos--
|
|
5
5
|
Author-email: Daniel Balparda <balparda@github.com>
|
|
6
6
|
License-Expression: Apache-2.0
|
|
@@ -18,7 +18,7 @@ Dynamic: license-file
|
|
|
18
18
|
|
|
19
19
|
# TransCrypto
|
|
20
20
|
|
|
21
|
-
Basic
|
|
21
|
+
Basic cryptography primitives implementation, a companion to *"Criptografia, Métodos e Algoritmos"*.
|
|
22
22
|
|
|
23
23
|
Started in July/2025, by Daniel Balparda. Since version 1.0.2 it is PyPI package:
|
|
24
24
|
|
|
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
|