https://github.com/vertigo-z/py-encoder
converts binary to base64. compresses it with zlib, with optional aes encryption, then encodes as base64 text file.
https://github.com/vertigo-z/py-encoder
aes-encryption base64-encoding cybersecurity payload-encryption payload-generator penetration-testing python3 red-team-tools
Last synced: about 15 hours 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/vertigo-z/py-encoder
- Owner: vertigo-z
- License: mit
- Created: 2026-01-04T21:23:38.000Z (6 months ago)
- Default Branch: main
- Last Pushed: 2026-02-07T14:46:34.000Z (5 months ago)
- Last Synced: 2026-06-06T05:26:39.536Z (25 days 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
```