An open API service indexing awesome lists of open source software.

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.

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
```