fastcrypter 2.4.0__tar.gz → 2.4.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.
- {fastcrypter-2.4.0/fastcrypter.egg-info → fastcrypter-2.4.2}/PKG-INFO +3 -16
- {fastcrypter-2.4.0 → fastcrypter-2.4.2}/README.md +1 -15
- {fastcrypter-2.4.0 → fastcrypter-2.4.2/fastcrypter.egg-info}/PKG-INFO +3 -16
- {fastcrypter-2.4.0 → fastcrypter-2.4.2}/pyproject.toml +2 -1
- {fastcrypter-2.4.0 → fastcrypter-2.4.2}/setup.py +2 -1
- {fastcrypter-2.4.0 → fastcrypter-2.4.2}/LICENSE +0 -0
- {fastcrypter-2.4.0 → fastcrypter-2.4.2}/MANIFEST.in +0 -0
- {fastcrypter-2.4.0 → fastcrypter-2.4.2}/examples/algorithm_test.py +0 -0
- {fastcrypter-2.4.0 → fastcrypter-2.4.2}/examples/basic_usage.py +0 -0
- {fastcrypter-2.4.0 → fastcrypter-2.4.2}/examples/custom_encoding_test.py +0 -0
- {fastcrypter-2.4.0 → fastcrypter-2.4.2}/examples/file_test.py +0 -0
- {fastcrypter-2.4.0 → fastcrypter-2.4.2}/examples/native_performance_test.py +0 -0
- {fastcrypter-2.4.0 → fastcrypter-2.4.2}/fastcrypter/__init__.py +0 -0
- {fastcrypter-2.4.0 → fastcrypter-2.4.2}/fastcrypter/advanced_encryptor.py +0 -0
- {fastcrypter-2.4.0 → fastcrypter-2.4.2}/fastcrypter/algorithms/__init__.py +0 -0
- {fastcrypter-2.4.0 → fastcrypter-2.4.2}/fastcrypter/algorithms/compression/__init__.py +0 -0
- {fastcrypter-2.4.0 → fastcrypter-2.4.2}/fastcrypter/algorithms/encryption/__init__.py +0 -0
- {fastcrypter-2.4.0 → fastcrypter-2.4.2}/fastcrypter/core/__init__.py +0 -0
- {fastcrypter-2.4.0 → fastcrypter-2.4.2}/fastcrypter/core/compressor.py +0 -0
- {fastcrypter-2.4.0 → fastcrypter-2.4.2}/fastcrypter/core/custom_encoder.py +0 -0
- {fastcrypter-2.4.0 → fastcrypter-2.4.2}/fastcrypter/core/encryptor.py +0 -0
- {fastcrypter-2.4.0 → fastcrypter-2.4.2}/fastcrypter/core/enhanced_compressor.py +0 -0
- {fastcrypter-2.4.0 → fastcrypter-2.4.2}/fastcrypter/core/key_manager.py +0 -0
- {fastcrypter-2.4.0 → fastcrypter-2.4.2}/fastcrypter/exceptions.py +0 -0
- {fastcrypter-2.4.0 → fastcrypter-2.4.2}/fastcrypter/file_encryptor.py +0 -0
- {fastcrypter-2.4.0 → fastcrypter-2.4.2}/fastcrypter/native/Makefile +0 -0
- {fastcrypter-2.4.0 → fastcrypter-2.4.2}/fastcrypter/native/crypto_core.c +0 -0
- {fastcrypter-2.4.0 → fastcrypter-2.4.2}/fastcrypter/native/hash_algorithms.cpp +0 -0
- {fastcrypter-2.4.0 → fastcrypter-2.4.2}/fastcrypter/native/native_loader.py +0 -0
- {fastcrypter-2.4.0 → fastcrypter-2.4.2}/fastcrypter/secure_compressor.py +0 -0
- {fastcrypter-2.4.0 → fastcrypter-2.4.2}/fastcrypter/utils/__init__.py +0 -0
- {fastcrypter-2.4.0 → fastcrypter-2.4.2}/fastcrypter.egg-info/SOURCES.txt +0 -0
- {fastcrypter-2.4.0 → fastcrypter-2.4.2}/fastcrypter.egg-info/dependency_links.txt +0 -0
- {fastcrypter-2.4.0 → fastcrypter-2.4.2}/fastcrypter.egg-info/entry_points.txt +0 -0
- {fastcrypter-2.4.0 → fastcrypter-2.4.2}/fastcrypter.egg-info/requires.txt +0 -0
- {fastcrypter-2.4.0 → fastcrypter-2.4.2}/fastcrypter.egg-info/top_level.txt +0 -0
- {fastcrypter-2.4.0 → fastcrypter-2.4.2}/requirements.txt +0 -0
- {fastcrypter-2.4.0 → fastcrypter-2.4.2}/setup.cfg +0 -0
- {fastcrypter-2.4.0 → fastcrypter-2.4.2}/tests/__init__.py +0 -0
- {fastcrypter-2.4.0 → fastcrypter-2.4.2}/tests/conftest.py +0 -0
- {fastcrypter-2.4.0 → fastcrypter-2.4.2}/tests/test_compressor.py +0 -0
- {fastcrypter-2.4.0 → fastcrypter-2.4.2}/tests/test_custom_encoder.py +0 -0
- {fastcrypter-2.4.0 → fastcrypter-2.4.2}/tests/test_encryptor.py +0 -0
- {fastcrypter-2.4.0 → fastcrypter-2.4.2}/tests/test_examples.py +0 -0
- {fastcrypter-2.4.0 → fastcrypter-2.4.2}/tests/test_file_encryptor.py +0 -0
- {fastcrypter-2.4.0 → fastcrypter-2.4.2}/tests/test_key_manager.py +0 -0
- {fastcrypter-2.4.0 → fastcrypter-2.4.2}/tests/test_secure_compressor.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: fastcrypter
|
|
3
|
-
Version: 2.4.
|
|
3
|
+
Version: 2.4.2
|
|
4
4
|
Summary: Professional compression and encryption library with native C/C++ acceleration
|
|
5
5
|
Home-page: https://gitlab.com/Pymmdrza/fastCrypter
|
|
6
6
|
Author: Mmdrza
|
|
@@ -22,6 +22,7 @@ Classifier: Programming Language :: Python :: 3.10
|
|
|
22
22
|
Classifier: Programming Language :: Python :: 3.11
|
|
23
23
|
Classifier: Programming Language :: Python :: 3.12
|
|
24
24
|
Classifier: Programming Language :: Python :: 3.13
|
|
25
|
+
Classifier: Programming Language :: Python :: 3.14
|
|
25
26
|
Classifier: Topic :: Security :: Cryptography
|
|
26
27
|
Classifier: Topic :: System :: Archiving :: Compression
|
|
27
28
|
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
@@ -302,22 +303,8 @@ mypy fastcrypter/
|
|
|
302
303
|
|
|
303
304
|
## Documentation
|
|
304
305
|
|
|
305
|
-
- **API Reference**: [ [Document](
|
|
306
|
+
- **API Reference**: [ [Document](misc/API_REFERENCE.md) ]
|
|
306
307
|
- **Examples**: See `examples/` directory [Examples](https://gitlab.com/Pymmdrza/fastCrypter/-/tree/main/examples)
|
|
307
|
-
- **Performance Guide**: [Performance Optimization](docs/performance.md)
|
|
308
|
-
|
|
309
|
-
## Contributing
|
|
310
|
-
|
|
311
|
-
We welcome contributions! Please see our [Contributing Guide](CONTRIBUTING.md) for details.
|
|
312
|
-
|
|
313
|
-
### Development Workflow
|
|
314
|
-
|
|
315
|
-
1. Fork the repository
|
|
316
|
-
2. Create a feature branch
|
|
317
|
-
3. Make your changes
|
|
318
|
-
4. Add tests for new functionality
|
|
319
|
-
5. Ensure all tests pass
|
|
320
|
-
6. Submit a merge request
|
|
321
308
|
|
|
322
309
|
## License
|
|
323
310
|
|
|
@@ -250,22 +250,8 @@ mypy fastcrypter/
|
|
|
250
250
|
|
|
251
251
|
## Documentation
|
|
252
252
|
|
|
253
|
-
- **API Reference**: [ [Document](
|
|
253
|
+
- **API Reference**: [ [Document](misc/API_REFERENCE.md) ]
|
|
254
254
|
- **Examples**: See `examples/` directory [Examples](https://gitlab.com/Pymmdrza/fastCrypter/-/tree/main/examples)
|
|
255
|
-
- **Performance Guide**: [Performance Optimization](docs/performance.md)
|
|
256
|
-
|
|
257
|
-
## Contributing
|
|
258
|
-
|
|
259
|
-
We welcome contributions! Please see our [Contributing Guide](CONTRIBUTING.md) for details.
|
|
260
|
-
|
|
261
|
-
### Development Workflow
|
|
262
|
-
|
|
263
|
-
1. Fork the repository
|
|
264
|
-
2. Create a feature branch
|
|
265
|
-
3. Make your changes
|
|
266
|
-
4. Add tests for new functionality
|
|
267
|
-
5. Ensure all tests pass
|
|
268
|
-
6. Submit a merge request
|
|
269
255
|
|
|
270
256
|
## License
|
|
271
257
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: fastcrypter
|
|
3
|
-
Version: 2.4.
|
|
3
|
+
Version: 2.4.2
|
|
4
4
|
Summary: Professional compression and encryption library with native C/C++ acceleration
|
|
5
5
|
Home-page: https://gitlab.com/Pymmdrza/fastCrypter
|
|
6
6
|
Author: Mmdrza
|
|
@@ -22,6 +22,7 @@ Classifier: Programming Language :: Python :: 3.10
|
|
|
22
22
|
Classifier: Programming Language :: Python :: 3.11
|
|
23
23
|
Classifier: Programming Language :: Python :: 3.12
|
|
24
24
|
Classifier: Programming Language :: Python :: 3.13
|
|
25
|
+
Classifier: Programming Language :: Python :: 3.14
|
|
25
26
|
Classifier: Topic :: Security :: Cryptography
|
|
26
27
|
Classifier: Topic :: System :: Archiving :: Compression
|
|
27
28
|
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
@@ -302,22 +303,8 @@ mypy fastcrypter/
|
|
|
302
303
|
|
|
303
304
|
## Documentation
|
|
304
305
|
|
|
305
|
-
- **API Reference**: [ [Document](
|
|
306
|
+
- **API Reference**: [ [Document](misc/API_REFERENCE.md) ]
|
|
306
307
|
- **Examples**: See `examples/` directory [Examples](https://gitlab.com/Pymmdrza/fastCrypter/-/tree/main/examples)
|
|
307
|
-
- **Performance Guide**: [Performance Optimization](docs/performance.md)
|
|
308
|
-
|
|
309
|
-
## Contributing
|
|
310
|
-
|
|
311
|
-
We welcome contributions! Please see our [Contributing Guide](CONTRIBUTING.md) for details.
|
|
312
|
-
|
|
313
|
-
### Development Workflow
|
|
314
|
-
|
|
315
|
-
1. Fork the repository
|
|
316
|
-
2. Create a feature branch
|
|
317
|
-
3. Make your changes
|
|
318
|
-
4. Add tests for new functionality
|
|
319
|
-
5. Ensure all tests pass
|
|
320
|
-
6. Submit a merge request
|
|
321
308
|
|
|
322
309
|
## License
|
|
323
310
|
|
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "fastcrypter"
|
|
7
|
-
version = "2.4.
|
|
7
|
+
version = "2.4.2"
|
|
8
8
|
description = "Professional compression and encryption library with native C/C++ acceleration"
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
license = {text = "MIT"}
|
|
@@ -29,6 +29,7 @@ classifiers = [
|
|
|
29
29
|
"Programming Language :: Python :: 3.11",
|
|
30
30
|
"Programming Language :: Python :: 3.12",
|
|
31
31
|
"Programming Language :: Python :: 3.13",
|
|
32
|
+
"Programming Language :: Python :: 3.14",
|
|
32
33
|
"Topic :: Security :: Cryptography",
|
|
33
34
|
"Topic :: System :: Archiving :: Compression",
|
|
34
35
|
"Topic :: Software Development :: Libraries :: Python Modules",
|
|
@@ -11,7 +11,7 @@ long_description = (
|
|
|
11
11
|
|
|
12
12
|
setup(
|
|
13
13
|
name="fastcrypter",
|
|
14
|
-
version="2.4.
|
|
14
|
+
version="2.4.2",
|
|
15
15
|
author="Mmdrza",
|
|
16
16
|
author_email="pymmdrza@gmail.com",
|
|
17
17
|
description="Professional compression and encryption library with native C/C++ acceleration",
|
|
@@ -31,6 +31,7 @@ setup(
|
|
|
31
31
|
"Programming Language :: Python :: 3.11",
|
|
32
32
|
"Programming Language :: Python :: 3.12",
|
|
33
33
|
"Programming Language :: Python :: 3.13",
|
|
34
|
+
"Programming Language :: Python :: 3.14",
|
|
34
35
|
"Topic :: Security :: Cryptography",
|
|
35
36
|
"Topic :: System :: Archiving :: Compression",
|
|
36
37
|
"Topic :: Software Development :: Libraries :: Python Modules",
|
|
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
|
|
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
|