marearts-crystal 1.0.6__cp312-cp312-win_amd64.whl → 2.0.0__cp312-cp312-win_amd64.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.
- marearts_crystal/__init__.py +9 -1
- marearts_crystal/ma_crystal.cp312-win_amd64.pyd +0 -0
- {marearts_crystal-1.0.6.dist-info → marearts_crystal-2.0.0.dist-info}/METADATA +20 -7
- marearts_crystal-2.0.0.dist-info/RECORD +7 -0
- {marearts_crystal-1.0.6.dist-info → marearts_crystal-2.0.0.dist-info}/WHEEL +1 -1
- marearts_crystal-1.0.6.dist-info/RECORD +0 -7
- {marearts_crystal-1.0.6.dist-info → marearts_crystal-2.0.0.dist-info/licenses}/LICENSE +0 -0
- {marearts_crystal-1.0.6.dist-info → marearts_crystal-2.0.0.dist-info}/top_level.txt +0 -0
marearts_crystal/__init__.py
CHANGED
@@ -1 +1,9 @@
|
|
1
|
-
|
1
|
+
__version__ = "2.0.0"
|
2
|
+
|
3
|
+
from .ma_crystal import ma_crystal
|
4
|
+
|
5
|
+
# Control what's exposed with 'from marearts_crystal import *'
|
6
|
+
__all__ = ['ma_crystal']
|
7
|
+
|
8
|
+
# This ensures only the ma_crystal class is exposed
|
9
|
+
# Internal implementation details remain hidden
|
Binary file
|
@@ -1,18 +1,15 @@
|
|
1
|
-
Metadata-Version: 2.
|
1
|
+
Metadata-Version: 2.4
|
2
2
|
Name: marearts-crystal
|
3
|
-
Version:
|
3
|
+
Version: 2.0.0
|
4
4
|
Summary: marearts crystal for encryption and decryption
|
5
5
|
Home-page: https://www.marearts.com
|
6
6
|
Author: MareArts
|
7
7
|
Author-email: MareArts <hello@marearts.com>
|
8
|
-
|
9
|
-
Project-URL: Bug Tracker, https://github.com/yourusername/marearts-crystal/issues
|
10
|
-
Keywords: encryption,decryption,cython
|
8
|
+
License: MIT
|
11
9
|
Classifier: Programming Language :: Python :: 3.9
|
12
10
|
Classifier: Programming Language :: Python :: 3.10
|
13
11
|
Classifier: Programming Language :: Python :: 3.11
|
14
12
|
Classifier: Programming Language :: Python :: 3.12
|
15
|
-
Classifier: License :: OSI Approved :: MIT License
|
16
13
|
Classifier: Operating System :: OS Independent
|
17
14
|
Requires-Python: <3.13,>=3.9
|
18
15
|
Description-Content-Type: text/markdown
|
@@ -20,10 +17,21 @@ License-File: LICENSE
|
|
20
17
|
Requires-Dist: cffi==1.16.0
|
21
18
|
Requires-Dist: cryptography==43.0.0
|
22
19
|
Requires-Dist: pycparser==2.22
|
20
|
+
Dynamic: license-file
|
23
21
|
|
24
22
|
# MareArts Crystal
|
25
23
|
|
26
|
-
|
24
|
+
A high-performance encryption library for Python, providing seamless encryption for serial keys, strings, and data with automatic security upgrades.
|
25
|
+
|
26
|
+
[](https://badge.fury.io/py/marearts-crystal)
|
27
|
+
[](https://pypi.org/project/marearts-crystal/)
|
28
|
+
|
29
|
+
## 🌐 Supported Platforms
|
30
|
+
|
31
|
+
- **Python versions**: 3.9, 3.10, 3.11, 3.12
|
32
|
+
- **Linux**: x86_64, aarch64 (manylinux1/manylinux2014)
|
33
|
+
- **Windows**: x86, x64
|
34
|
+
- **macOS**: x86_64, arm64 (Apple Silicon)
|
27
35
|
|
28
36
|
## Installation
|
29
37
|
|
@@ -38,8 +46,12 @@ pip install marearts-crystal
|
|
38
46
|
Here's a comprehensive guide on how to use MareArts Crystal:
|
39
47
|
|
40
48
|
```python
|
49
|
+
import marearts_crystal
|
41
50
|
from marearts_crystal import ma_crystal
|
42
51
|
|
52
|
+
# Check package version
|
53
|
+
print(f"MareArts Crystal version: {marearts_crystal.__version__}")
|
54
|
+
|
43
55
|
# Initialize with a secret key
|
44
56
|
secret_key = "your_secret_key_here"
|
45
57
|
skm = ma_crystal(secret_key)
|
@@ -136,6 +148,7 @@ else:
|
|
136
148
|
This project is licensed under the MIT License
|
137
149
|
|
138
150
|
|
151
|
+
|
139
152
|
## Support
|
140
153
|
|
141
154
|
www.marearts.com
|
@@ -0,0 +1,7 @@
|
|
1
|
+
marearts_crystal/__init__.py,sha256=0_2cwCAmH38oaY5kChXtYc-QMI-um6xI203GzWc_kBc,257
|
2
|
+
marearts_crystal/ma_crystal.cp312-win_amd64.pyd,sha256=tc2a-KwFOnipf03adOT336pAbCa_zjkZ_mbWDEDYApo,132608
|
3
|
+
marearts_crystal-2.0.0.dist-info/licenses/LICENSE,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
4
|
+
marearts_crystal-2.0.0.dist-info/METADATA,sha256=6zDRCVx6bNQEWRi565z3IZnofC7FplF4AOns04Lx1iU,4810
|
5
|
+
marearts_crystal-2.0.0.dist-info/WHEEL,sha256=8UP9x9puWI0P1V_d7K2oMTBqfeLNm21CTzZ_Ptr0NXU,101
|
6
|
+
marearts_crystal-2.0.0.dist-info/top_level.txt,sha256=N9PKpzxPIIZdhvSjlhuEl1yqenIsFaCE2HIs77WPdHI,17
|
7
|
+
marearts_crystal-2.0.0.dist-info/RECORD,,
|
@@ -1,7 +0,0 @@
|
|
1
|
-
marearts_crystal/__init__.py,sha256=VtyfnD_IJ_ZeQ0RSpcUBRpqblBIIER_-SrEsAJyoMfU,34
|
2
|
-
marearts_crystal/ma_crystal.cp312-win_amd64.pyd,sha256=UrXxxmy9Yk6PZiWs4wpp7JcUWwd1hcPDi3xOjQthg3E,101376
|
3
|
-
marearts_crystal-1.0.6.dist-info/LICENSE,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
4
|
-
marearts_crystal-1.0.6.dist-info/METADATA,sha256=Y3pQushXBkuP-WBlovJOW4dWITS9HExuT9E1a5PryGk,4563
|
5
|
-
marearts_crystal-1.0.6.dist-info/WHEEL,sha256=A8mRFNvJcDL8dRPZ6k2ICKEOXwE8pzYFXYxEla0rR0g,101
|
6
|
-
marearts_crystal-1.0.6.dist-info/top_level.txt,sha256=N9PKpzxPIIZdhvSjlhuEl1yqenIsFaCE2HIs77WPdHI,17
|
7
|
-
marearts_crystal-1.0.6.dist-info/RECORD,,
|
File without changes
|
File without changes
|