tgcryptomax 0.0.1__tar.gz → 0.0.3__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.
- {tgcryptomax-0.0.1 → tgcryptomax-0.0.3}/PKG-INFO +3 -2
- {tgcryptomax-0.0.1 → tgcryptomax-0.0.3}/pyproject.toml +6 -5
- tgcryptomax-0.0.3/setup.cfg +4 -0
- tgcryptomax-0.0.3/setup.py +16 -0
- {tgcryptomax-0.0.1 → tgcryptomax-0.0.3}/tgcryptomax.egg-info/PKG-INFO +3 -2
- {tgcryptomax-0.0.1 → tgcryptomax-0.0.3}/tgcryptomax.egg-info/SOURCES.txt +0 -2
- tgcryptomax-0.0.1/setup.cfg +0 -7
- tgcryptomax-0.0.1/setup.py +0 -36
- tgcryptomax-0.0.1/tgcryptomax.egg-info/not-zip-safe +0 -1
- {tgcryptomax-0.0.1 → tgcryptomax-0.0.3}/COPYING +0 -0
- {tgcryptomax-0.0.1 → tgcryptomax-0.0.3}/COPYING.lesser +0 -0
- {tgcryptomax-0.0.1 → tgcryptomax-0.0.3}/MANIFEST.in +0 -0
- {tgcryptomax-0.0.1 → tgcryptomax-0.0.3}/NOTICE +0 -0
- {tgcryptomax-0.0.1 → tgcryptomax-0.0.3}/README.md +0 -0
- {tgcryptomax-0.0.1 → tgcryptomax-0.0.3}/tgcryptomax/aes256.c +0 -0
- {tgcryptomax-0.0.1 → tgcryptomax-0.0.3}/tgcryptomax/aes256.h +0 -0
- {tgcryptomax-0.0.1 → tgcryptomax-0.0.3}/tgcryptomax/cbc256.c +0 -0
- {tgcryptomax-0.0.1 → tgcryptomax-0.0.3}/tgcryptomax/cbc256.h +0 -0
- {tgcryptomax-0.0.1 → tgcryptomax-0.0.3}/tgcryptomax/ctr256.c +0 -0
- {tgcryptomax-0.0.1 → tgcryptomax-0.0.3}/tgcryptomax/ctr256.h +0 -0
- {tgcryptomax-0.0.1 → tgcryptomax-0.0.3}/tgcryptomax/ige256.c +0 -0
- {tgcryptomax-0.0.1 → tgcryptomax-0.0.3}/tgcryptomax/ige256.h +0 -0
- {tgcryptomax-0.0.1 → tgcryptomax-0.0.3}/tgcryptomax/tgcryptomax.c +0 -0
- {tgcryptomax-0.0.1 → tgcryptomax-0.0.3}/tgcryptomax.egg-info/dependency_links.txt +0 -0
- {tgcryptomax-0.0.1 → tgcryptomax-0.0.3}/tgcryptomax.egg-info/top_level.txt +0 -0
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: tgcryptomax
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.3
|
|
4
4
|
Summary: Fast and Portable Cryptography Extension Library for Pyrogram
|
|
5
5
|
Author-email: Dan <dan@pyrogram.org>
|
|
6
|
-
License
|
|
6
|
+
License: LGPLv3+
|
|
7
7
|
Project-URL: Tracker, https://github.com/5hojib/tgcryptomax/issues
|
|
8
8
|
Project-URL: Community, https://t.me/pyrogram
|
|
9
9
|
Project-URL: Source, https://github.com/5hojib/tgcryptomax
|
|
@@ -11,6 +11,7 @@ Project-URL: Documentation, https://docs.pyrogram.org
|
|
|
11
11
|
Keywords: pyrogram,telegram,crypto,cryptography,encryption,mtproto,extension,library,aes
|
|
12
12
|
Classifier: Development Status :: 5 - Production/Stable
|
|
13
13
|
Classifier: Intended Audience :: Developers
|
|
14
|
+
Classifier: License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)
|
|
14
15
|
Classifier: Operating System :: OS Independent
|
|
15
16
|
Classifier: Programming Language :: C
|
|
16
17
|
Classifier: Programming Language :: Python
|
|
@@ -1,18 +1,19 @@
|
|
|
1
1
|
[build-system]
|
|
2
|
-
requires = ["setuptools", "wheel"]
|
|
2
|
+
requires = ["setuptools>=61.0", "wheel"]
|
|
3
3
|
build-backend = "setuptools.build_meta"
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "tgcryptomax"
|
|
7
|
-
version = "0.0.
|
|
7
|
+
version = "0.0.3"
|
|
8
8
|
description = "Fast and Portable Cryptography Extension Library for Pyrogram"
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
requires-python = ">=3.7"
|
|
11
|
-
license = "
|
|
11
|
+
license = { text = "LGPLv3+" }
|
|
12
12
|
authors = [{ name = "Dan", email = "dan@pyrogram.org" }]
|
|
13
13
|
classifiers = [
|
|
14
14
|
"Development Status :: 5 - Production/Stable",
|
|
15
15
|
"Intended Audience :: Developers",
|
|
16
|
+
"License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)",
|
|
16
17
|
"Operating System :: OS Independent",
|
|
17
18
|
"Programming Language :: C",
|
|
18
19
|
"Programming Language :: Python",
|
|
@@ -44,7 +45,7 @@ keywords = ["pyrogram", "telegram", "crypto", "cryptography", "encryption", "mtp
|
|
|
44
45
|
"Documentation" = "https://docs.pyrogram.org"
|
|
45
46
|
|
|
46
47
|
[tool.setuptools]
|
|
47
|
-
packages = [
|
|
48
|
+
packages = []
|
|
48
49
|
|
|
49
50
|
[tool.cibuildwheel]
|
|
50
|
-
enable = ["cpython-freethreading"]
|
|
51
|
+
enable = ["cpython-freethreading"]
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
from setuptools import setup, Extension
|
|
2
|
+
|
|
3
|
+
setup(
|
|
4
|
+
ext_modules=[
|
|
5
|
+
Extension(
|
|
6
|
+
"tgcryptomax",
|
|
7
|
+
sources=[
|
|
8
|
+
"tgcryptomax/tgcryptomax.c",
|
|
9
|
+
"tgcryptomax/aes256.c",
|
|
10
|
+
"tgcryptomax/ige256.c",
|
|
11
|
+
"tgcryptomax/ctr256.c",
|
|
12
|
+
"tgcryptomax/cbc256.c"
|
|
13
|
+
]
|
|
14
|
+
)
|
|
15
|
+
]
|
|
16
|
+
)
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: tgcryptomax
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.3
|
|
4
4
|
Summary: Fast and Portable Cryptography Extension Library for Pyrogram
|
|
5
5
|
Author-email: Dan <dan@pyrogram.org>
|
|
6
|
-
License
|
|
6
|
+
License: LGPLv3+
|
|
7
7
|
Project-URL: Tracker, https://github.com/5hojib/tgcryptomax/issues
|
|
8
8
|
Project-URL: Community, https://t.me/pyrogram
|
|
9
9
|
Project-URL: Source, https://github.com/5hojib/tgcryptomax
|
|
@@ -11,6 +11,7 @@ Project-URL: Documentation, https://docs.pyrogram.org
|
|
|
11
11
|
Keywords: pyrogram,telegram,crypto,cryptography,encryption,mtproto,extension,library,aes
|
|
12
12
|
Classifier: Development Status :: 5 - Production/Stable
|
|
13
13
|
Classifier: Intended Audience :: Developers
|
|
14
|
+
Classifier: License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)
|
|
14
15
|
Classifier: Operating System :: OS Independent
|
|
15
16
|
Classifier: Programming Language :: C
|
|
16
17
|
Classifier: Programming Language :: Python
|
|
@@ -4,7 +4,6 @@ MANIFEST.in
|
|
|
4
4
|
NOTICE
|
|
5
5
|
README.md
|
|
6
6
|
pyproject.toml
|
|
7
|
-
setup.cfg
|
|
8
7
|
setup.py
|
|
9
8
|
tgcryptomax/aes256.c
|
|
10
9
|
tgcryptomax/aes256.h
|
|
@@ -18,5 +17,4 @@ tgcryptomax/tgcryptomax.c
|
|
|
18
17
|
tgcryptomax.egg-info/PKG-INFO
|
|
19
18
|
tgcryptomax.egg-info/SOURCES.txt
|
|
20
19
|
tgcryptomax.egg-info/dependency_links.txt
|
|
21
|
-
tgcryptomax.egg-info/not-zip-safe
|
|
22
20
|
tgcryptomax.egg-info/top_level.txt
|
tgcryptomax-0.0.1/setup.cfg
DELETED
tgcryptomax-0.0.1/setup.py
DELETED
|
@@ -1,36 +0,0 @@
|
|
|
1
|
-
# Pyrogram - Telegram MTProto API Client Library for Python
|
|
2
|
-
# Copyright (C) 2017-present Dan <https://github.com/delivrance>
|
|
3
|
-
#
|
|
4
|
-
# This file is part of Pyrogram.
|
|
5
|
-
#
|
|
6
|
-
# Pyrogram is free software: you can redistribute it and/or modify
|
|
7
|
-
# it under the terms of the GNU Lesser General Public License as published
|
|
8
|
-
# by the Free Software Foundation, either version 3 of the License, or
|
|
9
|
-
# (at your option) any later version.
|
|
10
|
-
#
|
|
11
|
-
# Pyrogram is distributed in the hope that it will be useful,
|
|
12
|
-
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
13
|
-
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
14
|
-
# GNU Lesser General Public License for more details.
|
|
15
|
-
#
|
|
16
|
-
# You should have received a copy of the GNU Lesser General Public License
|
|
17
|
-
# along with Pyrogram. If not, see <http://www.gnu.org/licenses/>.
|
|
18
|
-
|
|
19
|
-
from setuptools import setup, Extension, find_packages
|
|
20
|
-
|
|
21
|
-
setup(
|
|
22
|
-
test_suite="tests",
|
|
23
|
-
zip_safe=False,
|
|
24
|
-
ext_modules=[
|
|
25
|
-
Extension(
|
|
26
|
-
"tgcryptomax",
|
|
27
|
-
sources=[
|
|
28
|
-
"tgcryptomax/tgcryptomax.c",
|
|
29
|
-
"tgcryptomax/aes256.c",
|
|
30
|
-
"tgcryptomax/ige256.c",
|
|
31
|
-
"tgcryptomax/ctr256.c",
|
|
32
|
-
"tgcryptomax/cbc256.c"
|
|
33
|
-
]
|
|
34
|
-
)
|
|
35
|
-
]
|
|
36
|
-
)
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
|
|
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
|