Scan a repo for secrets and encrypt/decrypt them in-place.
Project description
superencrypt
CLI to scan a repo for secrets (including env files), encrypt them in-place, and decrypt them later using a key.
Why
superencrypt helps you keep accidental secrets out of your repo history by encrypting sensitive values in-place while keeping files versionable.
Install
pip install superencryptx
No venv (recommended)
pipx install superencryptx
System install (no venv)
python3 -m pip install --user superencryptx
Quick start
# Encrypt in-place (generates a key, prints it, and writes .superencrypt.key)
superencrypt encrypt
# Decrypt in-place (use in CI/CD pipelines)
superencrypt decrypt --key-file .superencrypt.key
Usage
# Encrypt in-place (generates a key, prints it, and writes .superencrypt.key)
superencrypt encrypt
# Decrypt in-place (provide key or key file)
superencrypt decrypt --key-file .superencrypt.key
# Scan only (no changes)
superencrypt scan
Pipeline example
export SUPERENCRYPT_KEY="$(cat .superencrypt.key)"
superencrypt decrypt --key "$SUPERENCRYPT_KEY"
Notes
- Encrypted values are stored as
ENC[<token>]. - Key file
.superencrypt.keyshould be protected and not committed. - Use
scanfirst to review matches.
Development
python -m venv .venv
source .venv/bin/activate
pip install -e .
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file superencryptx-0.1.0.tar.gz.
File metadata
- Download URL: superencryptx-0.1.0.tar.gz
- Upload date:
- Size: 7.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
69bd5f48e6353b5d3690d76279c346bd89f54125a0956b9ce0602b1815ab5159
|
|
| MD5 |
f457000e0113369faa6484a9321fa11d
|
|
| BLAKE2b-256 |
6fa20cc726a469b1bdb9ea65f6b5f3c1ef71c5979b2e98e87824c898e897af20
|
File details
Details for the file superencryptx-0.1.0-py3-none-any.whl.
File metadata
- Download URL: superencryptx-0.1.0-py3-none-any.whl
- Upload date:
- Size: 8.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
28733c8873917ab7f82a2662d0fc4a719121168a80e8a551cf08ff035ddc421f
|
|
| MD5 |
9fda4ada4eb45ad996d95fada9f12c87
|
|
| BLAKE2b-256 |
4d0839ab55611786c684b05a46d5206e468611fe18f34e069e622db0ea08248a
|