marearts-crystal 1.1.0__cp311-cp311-macosx_10_9_universal2.whl → 2.0.0__cp311-cp311-macosx_10_9_universal2.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.cpython-311-darwin.so +0 -0
- {marearts_crystal-1.1.0.dist-info → marearts_crystal-2.0.0.dist-info}/METADATA +20 -4
- marearts_crystal-2.0.0.dist-info/RECORD +7 -0
- marearts_crystal-1.1.0.dist-info/RECORD +0 -7
- {marearts_crystal-1.1.0.dist-info → marearts_crystal-2.0.0.dist-info}/LICENSE +0 -0
- {marearts_crystal-1.1.0.dist-info → marearts_crystal-2.0.0.dist-info}/WHEEL +0 -0
- {marearts_crystal-1.1.0.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,16 +1,17 @@
|
|
1
1
|
Metadata-Version: 2.1
|
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
|
+
License: MIT
|
8
9
|
Classifier: Programming Language :: Python :: 3.9
|
9
10
|
Classifier: Programming Language :: Python :: 3.10
|
10
11
|
Classifier: Programming Language :: Python :: 3.11
|
11
|
-
Classifier:
|
12
|
+
Classifier: Programming Language :: Python :: 3.12
|
12
13
|
Classifier: Operating System :: OS Independent
|
13
|
-
Requires-Python: <3.
|
14
|
+
Requires-Python: <3.13,>=3.9
|
14
15
|
Description-Content-Type: text/markdown
|
15
16
|
License-File: LICENSE
|
16
17
|
Requires-Dist: cffi==1.16.0
|
@@ -19,7 +20,17 @@ Requires-Dist: pycparser==2.22
|
|
19
20
|
|
20
21
|
# MareArts Crystal
|
21
22
|
|
22
|
-
|
23
|
+
A high-performance encryption library for Python, providing seamless encryption for serial keys, strings, and data with automatic security upgrades.
|
24
|
+
|
25
|
+
[](https://badge.fury.io/py/marearts-crystal)
|
26
|
+
[](https://pypi.org/project/marearts-crystal/)
|
27
|
+
|
28
|
+
## 🌐 Supported Platforms
|
29
|
+
|
30
|
+
- **Python versions**: 3.9, 3.10, 3.11, 3.12
|
31
|
+
- **Linux**: x86_64, aarch64 (manylinux1/manylinux2014)
|
32
|
+
- **Windows**: x86, x64
|
33
|
+
- **macOS**: x86_64, arm64 (Apple Silicon)
|
23
34
|
|
24
35
|
## Installation
|
25
36
|
|
@@ -34,8 +45,12 @@ pip install marearts-crystal
|
|
34
45
|
Here's a comprehensive guide on how to use MareArts Crystal:
|
35
46
|
|
36
47
|
```python
|
48
|
+
import marearts_crystal
|
37
49
|
from marearts_crystal import ma_crystal
|
38
50
|
|
51
|
+
# Check package version
|
52
|
+
print(f"MareArts Crystal version: {marearts_crystal.__version__}")
|
53
|
+
|
39
54
|
# Initialize with a secret key
|
40
55
|
secret_key = "your_secret_key_here"
|
41
56
|
skm = ma_crystal(secret_key)
|
@@ -132,6 +147,7 @@ else:
|
|
132
147
|
This project is licensed under the MIT License
|
133
148
|
|
134
149
|
|
150
|
+
|
135
151
|
## Support
|
136
152
|
|
137
153
|
www.marearts.com
|
@@ -0,0 +1,7 @@
|
|
1
|
+
marearts_crystal/__init__.py,sha256=D9eL62INLdzC3B8uQRILkeMJgzjlANzVupVV0nrGPLE,247
|
2
|
+
marearts_crystal/ma_crystal.cpython-311-darwin.so,sha256=-lsRF4IMzIPbyQad0bDBUMAm2A4YnpKDVTed7fsw3Rg,468096
|
3
|
+
marearts_crystal-2.0.0.dist-info/LICENSE,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
4
|
+
marearts_crystal-2.0.0.dist-info/METADATA,sha256=Y0yauukX2lUZUiPEd4WLaBnpcBOdXUNaOclAl7C3KkA,4634
|
5
|
+
marearts_crystal-2.0.0.dist-info/WHEEL,sha256=vrdZjlh4exCGuOeHFVGYgW_9eYEDoByDCp4vVTWiG0w,115
|
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.cpython-311-darwin.so,sha256=Q5vzYaegzKB3z4RYdu5I0bffI0qvbxfHBqlrRYFsueE,309256
|
3
|
-
marearts_crystal-1.1.0.dist-info/LICENSE,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
4
|
-
marearts_crystal-1.1.0.dist-info/METADATA,sha256=wWkoIB13PMcImTxEE8ewUwInH9IHezyEoE78qJkMM3s,4178
|
5
|
-
marearts_crystal-1.1.0.dist-info/WHEEL,sha256=vrdZjlh4exCGuOeHFVGYgW_9eYEDoByDCp4vVTWiG0w,115
|
6
|
-
marearts_crystal-1.1.0.dist-info/top_level.txt,sha256=N9PKpzxPIIZdhvSjlhuEl1yqenIsFaCE2HIs77WPdHI,17
|
7
|
-
marearts_crystal-1.1.0.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|