Fast, streaming file encryption for large media files and cloud uploads
Project description
ciph
ciph is a fast, streaming file‑encryption tool built for large media files and cloud uploads. It uses modern, industry‑standard cryptography and is designed to safely encrypt files larger than your system RAM.
Encrypt locally. Upload anywhere. Decrypt only when you trust the environment.
❓ Why ciph?
Most encryption tools load the entire file into memory before encrypting it. ciph streams data in fixed-size chunks, which means you can encrypt a 50 GB 4K video on a machine with only 2 GB of RAM—smoothly and safely.
✨ Features
- 🔐 Strong encryption — AES‑256‑GCM or ChaCha20‑Poly1305
- 🔑 Password protection — Argon2id (memory‑hard key derivation)
- 🚀 High performance — streaming C core (1 MB chunks)
- 🧠 Constant memory usage — works with 10 GB+ files
- ⚙️ Hardware‑aware — AES‑NI when available, ChaCha fallback
- 🧪 Integrity protected — AEAD authentication on every chunk
- ☁️ Cloud / Telegram safe — encrypt before upload
- 🏷️ Filename preserved — original filename & extension are stored and restored on decryption
🔐 Cryptographic Design
ciph uses a hybrid (envelope) encryption model, similar to what is used in modern secure storage systems:
- A random data key encrypts the file in streaming mode.
- Your password is hardened using Argon2id.
- The data key is encrypted using the derived password key.
- Every chunk is authenticated to detect tampering.
No custom crypto. No weak primitives.
- The original filename (without path) is stored as encrypted metadata and automatically restored on decryption.
🔒 Security Strength
| Component | Algorithm | Strength |
|---|---|---|
| File encryption | AES‑256‑GCM | 256‑bit |
| File encryption (fallback) | ChaCha20‑Poly1305 | 256‑bit |
| Password KDF | Argon2id | Memory‑hard |
| Integrity | AEAD | Tamper‑proof |
| Nonces | Key-derived per chunk (unique, no reuse) | No reuse |
What this means
- Brute‑force attacks are computationally infeasible
- File corruption or tampering is always detected
- Encrypted files are safe on any cloud platform
- Losing the password means data is unrecoverable
🚀 Quick Start (Build from Source)
git clone https://github.com/ankit-chaubey/ciph
cd ciph
make
pip install .
📦 Installation
Requirements
- Linux / Termux
- Python ≥ 3.8
- libsodium
Install from PyPI
pip install ciph
🚀 Usage
Encrypt a file
ciph encrypt video.mp4
Output:
video.mp4.ciph
Decrypt a file
ciph decrypt video.mp4.ciph
Output:
video.mp4
The original filename and extension are automatically restored, even if the encrypted file was renamed.
Example workflow (Cloud / Telegram)
ciph encrypt movie.mkv
# upload movie.mkv.ciph anywhere
# share the password securely
ciph decrypt movie.mkv.ciph
📝 File Format
| Offset | Size | Description |
|---|---|---|
| 0 | 4 | Magic bytes (CIPH) |
| 4 | 1 | Format version |
| 5 | 1 | Cipher mode (1 = AES, 2 = ChaCha) |
| 6 | 16 | Argon2 salt |
| 22 | 12 | Key nonce |
| 34 | 1 | Filename length (N) |
| 35 | N | Original filename (UTF‑8) |
| 35+N | 2 | Encrypted data‑key length |
| … | … | Encrypted data key + encrypted payload |
📊 Performance
- Processes data in 1 MB chunks
- Cryptography handled in C (libsodium)
- Python used only for CLI orchestration
- Typical throughput: hundreds of MB/s (CPU‑bound)
Encryption is usually faster than your internet upload speed.
⚠️ Limitations (v0.1.0)
- Linux / Termux only
- No resume support yet
- Progress bar shows start → finish (stream handled in C)
- Password‑based encryption only (public‑key mode planned)
- Filename metadata is visible (content remains fully encrypted)
🧑💻 Author & Project
ciph is designed, developed, and maintained by
Ankit Chaubey (@ankit‑chaubey)
GitHub Repository: 👉 https://github.com/ankit-chaubey/ciph
The project focuses on building secure, efficient, and practical cryptographic tools for real‑world usage, especially for media files and cloud storage.
📜 License
Apache License 2.0
Copyright © 2026 Ankit Chaubey
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at:
https://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
🔮 Roadmap
Planned future improvements:
- Parallel chunk encryption
- Resume / partial decryption
- Public‑key encryption mode
- Real‑time progress callbacks
- Prebuilt wheels (manylinux)
⚠️ Disclaimer
This tool uses strong cryptography.
If you forget your password, your data cannot be recovered.
Use responsibly.
Project details
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 ciph-0.1.1.tar.gz.
File metadata
- Download URL: ciph-0.1.1.tar.gz
- Upload date:
- Size: 11.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3bf711e74bb9857d97e4bf9a05c942687feb82e534dc86e7174a069702f9979d
|
|
| MD5 |
9e14ac4f155968402faf6bdee29103ea
|
|
| BLAKE2b-256 |
ed098be244baf29d202b508cceb3bf53d3c24fc60cc2c718ceb4baf476d60fd6
|
Provenance
The following attestation bundles were made for ciph-0.1.1.tar.gz:
Publisher:
publish.yml on ankit-chaubey/ciph
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
ciph-0.1.1.tar.gz -
Subject digest:
3bf711e74bb9857d97e4bf9a05c942687feb82e534dc86e7174a069702f9979d - Sigstore transparency entry: 919601504
- Sigstore integration time:
-
Permalink:
ankit-chaubey/ciph@1cf96391bbbc0d764fc4507808527628262fb668 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/ankit-chaubey
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@1cf96391bbbc0d764fc4507808527628262fb668 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file ciph-0.1.1-py3-none-any.whl.
File metadata
- Download URL: ciph-0.1.1-py3-none-any.whl
- Upload date:
- Size: 9.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2613b015884eb51cc1c06f0ef372729ef238bb38b418ad167c4acba3d51f5d0b
|
|
| MD5 |
1daff1aabe8f3f028985f80518de9638
|
|
| BLAKE2b-256 |
f80c98921e7dd1743735d9e300079a7328d5f242da5a9eae2b291c67826663a4
|
Provenance
The following attestation bundles were made for ciph-0.1.1-py3-none-any.whl:
Publisher:
publish.yml on ankit-chaubey/ciph
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
ciph-0.1.1-py3-none-any.whl -
Subject digest:
2613b015884eb51cc1c06f0ef372729ef238bb38b418ad167c4acba3d51f5d0b - Sigstore transparency entry: 919601516
- Sigstore integration time:
-
Permalink:
ankit-chaubey/ciph@1cf96391bbbc0d764fc4507808527628262fb668 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/ankit-chaubey
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@1cf96391bbbc0d764fc4507808527628262fb668 -
Trigger Event:
workflow_dispatch
-
Statement type: