Metadata-Version: 2.2
Name: PyPePacker
Version: 1.0.0
Summary: This package implements a packer written in python, the packer reduce the size (gzip compression), encrypt data (RC6 encryption) and reduce data entropy (using EntropyEncoding).
Home-page: https://github.com/mauricelambert/PyPePacker
Download-URL: https://mauricelambert.github.io/info/python/security/PyPePacker.pyz
Author: Maurice Lambert
Author-email: Maurice Lambert <mauricelambert434@gmail.com>
Maintainer: Maurice Lambert
Maintainer-email: Maurice Lambert <mauricelambert434@gmail.com>
License: GPL-3.0 License
Project-URL: Github, https://github.com/mauricelambert/PyPePacker
Project-URL: Documentation, https://mauricelambert.github.io/info/python/security/PyPePacker.html
Project-URL: Python Executable, https://mauricelambert.github.io/info/python/security/PyPePacker.pyz
Project-URL: Windows Executable, https://mauricelambert.github.io/info/python/security/PyPePacker.exe
Keywords: Packer,PythonPacker,PePacker,RC6Packer,PackerLowEntropy,PackerGzip,PackerCompress,PackerEncryption
Platform: Windows
Platform: Linux
Platform: MacOS
Classifier: Topic :: System
Classifier: Topic :: Security
Classifier: Environment :: Console
Classifier: Topic :: System :: Shells
Classifier: Operating System :: POSIX
Classifier: Natural Language :: English
Classifier: Topic :: System :: Networking
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Programming Language :: Python
Classifier: Intended Audience :: Developers
Classifier: Topic :: System :: System Shells
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Programming Language :: Python :: 3.8
Classifier: Operating System :: Microsoft :: Windows
Classifier: Topic :: System :: Systems Administration
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: System Administrators
Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE.txt
Requires-Dist: PyPeLoader>=1.0.0
Requires-Dist: RC6Encryption>=1.0.1
Requires-Dist: EntropyEncoding>=0.0.5
Dynamic: author
Dynamic: download-url
Dynamic: home-page
Dynamic: maintainer
Dynamic: requires-python

![PyPePacker Logo](https://mauricelambert.github.io/info/python/security/PyPePacker_small.png "PyPePacker logo")

# PyPePacker

## Description

This package implements a packer written in python, the packer reduce
the size (gzip compression), encrypt data (RC6 encryption) and reduce
data entropy (using EntropyEncoding).

## Requirements

This package require:

 - python3
 - python3 Standard Library
 - PyPeLoader >= 1.0.0
 - RC6Encryption >= 1.0.1
 - EntropyEncoding >= 0.0.5

## Installation

### Pip

```bash
python3 -m pip install PyPePacker
```

### Git

```bash
git clone "https://github.com/mauricelambert/PyPePacker.git"
cd "PyPePacker"
python3 -m pip install .
```

### Wget

```bash
wget https://github.com/mauricelambert/PyPePacker/archive/refs/heads/main.zip
unzip main.zip
cd PyPePacker-main
python3 -m pip install .
```

### cURL

```bash
curl -O https://github.com/mauricelambert/PyPePacker/archive/refs/heads/main.zip
unzip main.zip
cd PyPePacker-main
python3 -m pip install .
```

## Usages

### Command line

```bash
PyPePacker              # Using CLI package executable
python3 -m PyPePacker   # Using python module
python3 PyPePacker.pyz  # Using python executable
PyPePacker.exe          # Using python Windows executable

PyPePacker C:\Windows\System32\net1.exe C:\Windows\System32\calc.exe
```

## Links

 - [Pypi](https://pypi.org/project/PyPePacker)
 - [Github](https://github.com/mauricelambert/PyPePacker)
 - [Documentation](https://mauricelambert.github.io/info/python/security/PyPePacker.html)
 - [Python executable](https://mauricelambert.github.io/info/python/security/PyPePacker.pyz)
 - [Python Windows executable](https://mauricelambert.github.io/info/python/security/PyPePacker.exe)

## License

Licensed under the [GPL, version 3](https://www.gnu.org/licenses/).
