PyProtect-v3 3.2.2__tar.gz → 3.2.3__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.
Files changed (22) hide show
  1. {pyprotect_v3-3.2.2 → pyprotect_v3-3.2.3}/PKG-INFO +1 -1
  2. {pyprotect_v3-3.2.2 → pyprotect_v3-3.2.3}/PyProtect_v3.egg-info/PKG-INFO +1 -1
  3. pyprotect_v3-3.2.3/pyprotect/_version.py +1 -0
  4. {pyprotect_v3-3.2.2 → pyprotect_v3-3.2.3}/pyprotect/engine.c +1 -0
  5. pyprotect_v3-3.2.2/pyprotect/_version.py +0 -1
  6. {pyprotect_v3-3.2.2 → pyprotect_v3-3.2.3}/MANIFEST.in +0 -0
  7. {pyprotect_v3-3.2.2 → pyprotect_v3-3.2.3}/PyProtect_v3.egg-info/SOURCES.txt +0 -0
  8. {pyprotect_v3-3.2.2 → pyprotect_v3-3.2.3}/PyProtect_v3.egg-info/dependency_links.txt +0 -0
  9. {pyprotect_v3-3.2.2 → pyprotect_v3-3.2.3}/PyProtect_v3.egg-info/entry_points.txt +0 -0
  10. {pyprotect_v3-3.2.2 → pyprotect_v3-3.2.3}/PyProtect_v3.egg-info/requires.txt +0 -0
  11. {pyprotect_v3-3.2.2 → pyprotect_v3-3.2.3}/PyProtect_v3.egg-info/top_level.txt +0 -0
  12. {pyprotect_v3-3.2.2 → pyprotect_v3-3.2.3}/README.md +0 -0
  13. {pyprotect_v3-3.2.2 → pyprotect_v3-3.2.3}/pyproject.toml +0 -0
  14. {pyprotect_v3-3.2.2 → pyprotect_v3-3.2.3}/pyprotect/__init__.py +0 -0
  15. {pyprotect_v3-3.2.2 → pyprotect_v3-3.2.3}/pyprotect/__main__.py +0 -0
  16. {pyprotect_v3-3.2.2 → pyprotect_v3-3.2.3}/pyprotect/anti_debug.py +0 -0
  17. {pyprotect_v3-3.2.2 → pyprotect_v3-3.2.3}/pyprotect/crypto.py +0 -0
  18. {pyprotect_v3-3.2.2 → pyprotect_v3-3.2.3}/pyprotect/engine.py +0 -0
  19. {pyprotect_v3-3.2.2 → pyprotect_v3-3.2.3}/pyprotect/hooks.py +0 -0
  20. {pyprotect_v3-3.2.2 → pyprotect_v3-3.2.3}/pyprotect/obfuscator.py +0 -0
  21. {pyprotect_v3-3.2.2 → pyprotect_v3-3.2.3}/setup.cfg +0 -0
  22. {pyprotect_v3-3.2.2 → pyprotect_v3-3.2.3}/setup.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: PyProtect-v3
3
- Version: 3.2.2
3
+ Version: 3.2.3
4
4
  Summary: Python script obfuscation library with AES-256-GCM encryption and C extension acceleration
5
5
  Author-email: NguyenNgocNam <c.nam020213@gmail.com>
6
6
  License-Expression: MIT
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: PyProtect-v3
3
- Version: 3.2.2
3
+ Version: 3.2.3
4
4
  Summary: Python script obfuscation library with AES-256-GCM encryption and C extension acceleration
5
5
  Author-email: NguyenNgocNam <c.nam020213@gmail.com>
6
6
  License-Expression: MIT
@@ -0,0 +1 @@
1
+ __version__ = "3.2.3"
@@ -632,6 +632,7 @@ static PyObject* engine_decrypt_and_exec(PyObject *self, PyObject *args) {
632
632
  if (!globals) { restore_frame_hook(); Py_DECREF(code_obj); return NULL; }
633
633
 
634
634
  PyDict_SetItemString(globals, "__builtins__", builtins);
635
+ PyDict_SetItemString(globals, "__name__", PyUnicode_FromString("__main__"));
635
636
 
636
637
  PyObject *result = PyEval_EvalCode((PyObject*)code_obj, globals, globals);
637
638
 
@@ -1 +0,0 @@
1
- __version__ = "3.2.2"
File without changes
File without changes
File without changes
File without changes