quantumlock-sdk 1.0.0__py3-none-any.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.
- quantumlock_sdk/__init__.py +31 -0
- quantumlock_sdk/client.cpython-312-x86_64-linux-gnu.so +0 -0
- quantumlock_sdk/hybrid.cpython-312-x86_64-linux-gnu.so +0 -0
- quantumlock_sdk/hybrid_validator.cpython-312-x86_64-linux-gnu.so +0 -0
- quantumlock_sdk/keys.cpython-312-x86_64-linux-gnu.so +0 -0
- quantumlock_sdk/license_v1.cpython-312-x86_64-linux-gnu.so +0 -0
- quantumlock_sdk/mldsa.cpython-312-x86_64-linux-gnu.so +0 -0
- quantumlock_sdk/serialization.cpython-312-x86_64-linux-gnu.so +0 -0
- quantumlock_sdk/validator.cpython-312-x86_64-linux-gnu.so +0 -0
- quantumlock_sdk/validator_v2.cpython-312-x86_64-linux-gnu.so +0 -0
- quantumlock_sdk-1.0.0.dist-info/METADATA +47 -0
- quantumlock_sdk-1.0.0.dist-info/RECORD +13 -0
- quantumlock_sdk-1.0.0.dist-info/WHEEL +4 -0
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
"""
|
|
2
|
+
QuantumLock SDK - Enterprise License Validation
|
|
3
|
+
================================================
|
|
4
|
+
|
|
5
|
+
Protected build - core logic is compiled for security.
|
|
6
|
+
|
|
7
|
+
Version: 1.0.0
|
|
8
|
+
Copyright (c) 2025 SoftQuantus
|
|
9
|
+
"""
|
|
10
|
+
|
|
11
|
+
__version__ = "1.0.0"
|
|
12
|
+
__author__ = "SoftQuantus"
|
|
13
|
+
|
|
14
|
+
# Import from compiled modules
|
|
15
|
+
try:
|
|
16
|
+
from .validator import LicenseValidator, ValidationResult
|
|
17
|
+
from .client import QuantumLockClient
|
|
18
|
+
from .hybrid_validator import HybridLicenseValidator
|
|
19
|
+
except ImportError as e:
|
|
20
|
+
raise ImportError(
|
|
21
|
+
"QuantumLock SDK compiled modules not found. "
|
|
22
|
+
"Please ensure the package is installed correctly."
|
|
23
|
+
) from e
|
|
24
|
+
|
|
25
|
+
__all__ = [
|
|
26
|
+
"LicenseValidator",
|
|
27
|
+
"ValidationResult",
|
|
28
|
+
"QuantumLockClient",
|
|
29
|
+
"HybridLicenseValidator",
|
|
30
|
+
"__version__",
|
|
31
|
+
]
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: quantumlock-sdk
|
|
3
|
+
Version: 1.0.0
|
|
4
|
+
Summary: QuantumLock SDK - Enterprise License Validation with Quantum Security
|
|
5
|
+
Project-URL: Homepage, https://quantumlock.softquantus.com
|
|
6
|
+
Project-URL: Documentation, https://docs.softquantus.com/quantumlock
|
|
7
|
+
Author-email: SoftQuantus <dev@softquantus.com>
|
|
8
|
+
License-Expression: LicenseRef-Proprietary
|
|
9
|
+
Classifier: Development Status :: 5 - Production/Stable
|
|
10
|
+
Classifier: Intended Audience :: Developers
|
|
11
|
+
Classifier: Operating System :: POSIX :: Linux
|
|
12
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
13
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
14
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
15
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
16
|
+
Classifier: Topic :: Security :: Cryptography
|
|
17
|
+
Requires-Python: >=3.9
|
|
18
|
+
Requires-Dist: cryptography>=41.0.0
|
|
19
|
+
Requires-Dist: httpx>=0.25.0
|
|
20
|
+
Requires-Dist: pydantic>=2.0.0
|
|
21
|
+
Description-Content-Type: text/markdown
|
|
22
|
+
|
|
23
|
+
# QuantumLock SDK
|
|
24
|
+
|
|
25
|
+
Enterprise License Validation with Quantum Security.
|
|
26
|
+
|
|
27
|
+
## Installation
|
|
28
|
+
|
|
29
|
+
```bash
|
|
30
|
+
pip install quantumlock-sdk
|
|
31
|
+
```
|
|
32
|
+
|
|
33
|
+
## Quick Start
|
|
34
|
+
|
|
35
|
+
```python
|
|
36
|
+
from quantumlock_sdk import LicenseValidator
|
|
37
|
+
|
|
38
|
+
validator = LicenseValidator(api_url="https://api.quantumlock.softquantus.com")
|
|
39
|
+
result = validator.validate("YOUR-LICENSE-KEY")
|
|
40
|
+
|
|
41
|
+
if result.valid:
|
|
42
|
+
print("License validated successfully!")
|
|
43
|
+
```
|
|
44
|
+
|
|
45
|
+
## Documentation
|
|
46
|
+
|
|
47
|
+
https://docs.softquantus.com/quantumlock
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
quantumlock_sdk/__init__.py,sha256=H4yxE0QKpXh97DjcsWzx1T45Eh4bww2JXF8Z5bGscvo,769
|
|
2
|
+
quantumlock_sdk/client.cpython-312-x86_64-linux-gnu.so,sha256=bpwblqSrlvICs-JZG6dler7vRBIIEiYtdzlcdIF7mHw,348016
|
|
3
|
+
quantumlock_sdk/hybrid.cpython-312-x86_64-linux-gnu.so,sha256=0lDRjXPQBUoVYmFUw8UAH7rcglb9BupyZ4GMFBU1pbw,360368
|
|
4
|
+
quantumlock_sdk/hybrid_validator.cpython-312-x86_64-linux-gnu.so,sha256=1WLR5GcQpVFQ7fytm0XNhevxeNBuo0B6gjZupGfxCPY,540792
|
|
5
|
+
quantumlock_sdk/keys.cpython-312-x86_64-linux-gnu.so,sha256=A_CuNJl-WL2aYwgWZTgBYkWduRHCVvYnSIfugOs5Hw4,413664
|
|
6
|
+
quantumlock_sdk/license_v1.cpython-312-x86_64-linux-gnu.so,sha256=Aum48XrglRjI6FkjZMyZHBLUwLIkNtMcd-Nynuokrc0,532464
|
|
7
|
+
quantumlock_sdk/mldsa.cpython-312-x86_64-linux-gnu.so,sha256=GyBE4Q8__QrntBf7BHr0ItwSqALhBKAiyQoKZ3UcK6Q,356304
|
|
8
|
+
quantumlock_sdk/serialization.cpython-312-x86_64-linux-gnu.so,sha256=Gh1iIIQhABImaEJ6DDOlXN2WbCjyx5QGxV9aH_90vTU,393216
|
|
9
|
+
quantumlock_sdk/validator.cpython-312-x86_64-linux-gnu.so,sha256=H9HJ7QtbsH-GHOjaWN0epaemsjDNKIesN1ooPL2t4WE,380944
|
|
10
|
+
quantumlock_sdk/validator_v2.cpython-312-x86_64-linux-gnu.so,sha256=yk9YkMU5yocif1Ex6J1-GRlfeKKxy06YmIBtExLXikM,430080
|
|
11
|
+
quantumlock_sdk-1.0.0.dist-info/METADATA,sha256=x7HCP7Vm3oH4ecbzK3FJhr8kRo0AJ9b2pw8RVfwPK5I,1371
|
|
12
|
+
quantumlock_sdk-1.0.0.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
|
|
13
|
+
quantumlock_sdk-1.0.0.dist-info/RECORD,,
|