An encryption research repository with specialized composers for demonstrating algorithms and production mechanisms while collecting benchmarks.
Architect's Note: This repo is an evolving early-prototype. It will lack and/or provide features preferred by cryptography professionals.
This project reduces cognitive overhead when testing:
- Implementable encryption patterns
- Prototype algorithms
- KDF (Key Derivation Function) designs
- Production-ready encryption mechanisms
Composers are high-level encryption algorithm harnesses that manage lifecycle, collect metrics, and simplify experimentation:
- SimpleEncryptionComposer - Single algorithm with "fire and forget" semantics
- MultiEncryptionComposer (prototype) - Layered multi-algorithm encryption
# Install dependencies
uv sync
# Run tests
python -m pytest lib/tests/
# Launch notebooks
jupyter notebookDay-to-day operations run through Task — no IDE required:
task # list all lab tasks
task test # full test suite
task ride # benchmark the specimen shelf in the terminal
task ride:full # include scaling analysis
task nb:check # execute notebooks headlessly without writing outputs
task nb:exec # re-execute notebooks, refreshing committed outputs
task analyze # output quality panel (entropy, avalanche, ECB canary)
task bench:save # persist a seeded, commit-stamped benchmark run
task bench:diff # throughput delta between the latest two saved runsSymmetric.ipynb- Symmetric encryption benchmarksAsymmetric.ipynb- Asymmetric encryption examplesML-KEM.ipynb- Post-quantum hybrid encryption (ML-KEM-768 + AES-256-GCM, FIPS 203)Encryption Composer.ipynb- Composer usage examples
- Python 3.10+
- uv package manager