https://github.com/vertigo6622/py-encoder
converts binary to base64. compresses it with zlib, with optional aes encryption, then encodes as base64 text file.
https://github.com/vertigo6622/py-encoder
aes-encryption base64-encoding cybersecurity payload-encryption payload-generator penetration-testing python3 red-team-tools
Last synced: 15 days ago
JSON representation
converts binary to base64. compresses it with zlib, with optional aes encryption, then encodes as base64 text file.
- Host: GitHub
- URL: https://github.com/vertigo6622/py-encoder
- Owner: vertigo6622
- License: mit
- Created: 2026-01-04T21:23:38.000Z (5 months ago)
- Default Branch: main
- Last Pushed: 2026-02-07T14:46:34.000Z (4 months ago)
- Last Synced: 2026-04-04T14:10:05.474Z (2 months ago)
- Topics: aes-encryption, base64-encoding, cybersecurity, payload-encryption, payload-generator, penetration-testing, python3, red-team-tools
- Language: Python
- Homepage:
- Size: 15.6 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# b64enc
a python utility for encoding, compressing, and encrypting files into Base64 strings.
## Features
* AES-256-CBC Encryption
* Zlib Compression
## Requirements
```bash
pip install pycryptodome
```
## Usage
**Encrypt a file:**
```bash
python3 -m b64enc -e -o
```
**Compress and encode a file (no encryption):**
```bash
python3 -m b64enc -o
```
**Decompress and decrypt a file:**
```bash
python3 -m decrypt -p
```
**Decompress a file (no encryption):**
```bash
python3 -m decrypt
```