voidcrypt 1.1__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.
voidcrypt/__init__.py ADDED
@@ -0,0 +1,8 @@
1
+ """
2
+ VoidCrypt - 12-Layer Military Grade Encryption
3
+ """
4
+
5
+ __version__ = "1.1"
6
+ __author__ = "Sarvesh" # Internal only
7
+
8
+ from .core import main
@@ -0,0 +1,49 @@
1
+ Metadata-Version: 2.4
2
+ Name: voidcrypt
3
+ Version: 1.1
4
+ Summary: 🔒 VoidCrypt - 12-Layer Military Grade Encryption (Universal)
5
+ License: MIT
6
+ Requires-Python: >=3.7
7
+ Description-Content-Type: text/markdown
8
+ Requires-Dist: cryptography>=3.4.0
9
+ Dynamic: description
10
+ Dynamic: description-content-type
11
+ Dynamic: license
12
+ Dynamic: requires-dist
13
+ Dynamic: requires-python
14
+ Dynamic: summary
15
+
16
+ # 🔒 VOIDCRYPT v3.0.0
17
+
18
+ <div align="center">
19
+ <h1>âš¡ INSANE LEVEL PYTHON ENCRYPTION âš¡</h1>
20
+ <p><strong>12-Layer Military Grade Protection with Auto Root Storage</strong></p>
21
+ <p>Author: <strong>Sarvesh</strong></p>
22
+ </div>
23
+
24
+ ## 🚀 FEATURES
25
+
26
+ - ✅ **12 Encryption Layers** - XOR, AES-256, ChaCha20, Bytecode, Compression, etc.
27
+ - ✅ **Working Output** - Protected `.py` files run normally
28
+ - ✅ **Auto Root Storage** - Automatically creates `/VoidCrypt/` in device root
29
+ - ✅ **Organized Structure** - Separate folders for protected files, keys, and logs
30
+ - ✅ **Insane Security** - Practically impossible to decode
31
+ - ✅ **Simple Command** - Just `voidcrypt`
32
+
33
+ ## 📂 STORAGE LOCATION
34
+
35
+ | Device | Path |
36
+ |--------|------|
37
+ | **Android** | `/storage/emulated/0/VoidCrypt/` |
38
+ | **Linux** | `/root/VoidCrypt/` |
39
+ | **Windows** | `C:\VoidCrypt\` |
40
+ | **Fallback** | `./VoidCrypt/` |
41
+
42
+ ## 📦 INSTALLATION
43
+
44
+ ```bash
45
+ # From PyPI
46
+ pip install voidcrypt
47
+
48
+ # Verify installation
49
+ voidcrypt --version# Voudcrypt
@@ -0,0 +1,6 @@
1
+ voidcrypt/__init__.py,sha256=zpfGj3MgwMBlm4DYX7_osi3tp-HzRKIAtoWDa-Yp7GY,139
2
+ voidcrypt-1.1.dist-info/METADATA,sha256=ZxfeBYVq_IkBKfkqwbsQWwZH9xw0Nsmw0RJp24ksN3s,1375
3
+ voidcrypt-1.1.dist-info/WHEEL,sha256=TdQ5LtNwLuxTCjgxN51AgdU5w-KkB9ttmLbzjTH02pg,109
4
+ voidcrypt-1.1.dist-info/entry_points.txt,sha256=LNpMld1JlWFZXz6I8zRrWoHScCxTL-lJ1ZQWRYayYkU,50
5
+ voidcrypt-1.1.dist-info/top_level.txt,sha256=Tyxne0ESI2AuevxevYVPtVlGn1Tk2GZ2pS09OnZakX4,10
6
+ voidcrypt-1.1.dist-info/RECORD,,
@@ -0,0 +1,6 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (82.0.1)
3
+ Root-Is-Purelib: true
4
+ Tag: py2-none-any
5
+ Tag: py3-none-any
6
+
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ voidcrypt = voidcrypt.core:main
@@ -0,0 +1 @@
1
+ voidcrypt