Expand description
§Shadow Crypt
Password-based file encryption with filename obfuscation.
shadow turns files and directories into anonymously named .shadow
containers. unshadow restores them. shadows lists them.
§Features
- Strong cryptography: XChaCha20-Poly1305 authenticated encryption, Argon2id key derivation
- Metadata encrypted: filenames, timestamps, and permissions travel inside an encrypted metadata envelope; a directory becomes a single archive that hides even its file count and sizes
- Tamper-evident: headers are bound to the ciphertext as AEAD associated data; chunk counters make reordering and truncation fail
- Any size: streaming encryption and decryption with bounded memory
- Pure Rust: no C or system libraries
§Command line usage
shadow notes.txt photos/ # encrypt files and directories
unshadow mzpuTgQmBPJfTAJh.shadow
shadows # list .shadow files with original namesSee the repository’s docs/FORMAT.md for the file format specification
and docs/THREAT_MODEL.md for the threat model.