Encrypted archive metadata
Archive contents, file names, metadata, indexes, and payloads can be protected instead of leaving sensitive structure exposed.
Open archive format
tzap combines Zstandard compression, authenticated encryption, split volumes, and recovery data in one practical format with a Rust reference implementation.
cargo install tzap Most archive tools optimize for sharing small files or unpacking old formats. tzap is aimed at archives you may need to trust years from now: private datasets, source records, media sets, legal material, and cold backups.
export TZAP_PASSPHRASE='correct horse battery staple'
printf '%s\n' "$TZAP_PASSPHRASE" | \
tzap create --password-stdin -o backup.tzap ./project
printf '%s\n' "$TZAP_PASSPHRASE" | tzap verify --password-stdin backup.tzap
printf '%s\n' "$TZAP_PASSPHRASE" | tzap extract --password-stdin backup.tzap -C restored ZManager CLI is an open-source universal archiver that supports .tzap workflows alongside ZIP, TAR.ZST, 7z, and broad extraction formats.
Questions, support requests, and project coordination can go through email.
Fund release work, compatibility testing, documentation, and long-term maintenance.
tzap is built for private archives that need to remain understandable and restorable years after they were created. The format combines compression, authenticated encryption, manifest integrity checks, split-volume layouts, and recovery data so backups, source records, media sets, and research datasets can be stored with fewer fragile assumptions.
Archive contents, file names, metadata, indexes, and payloads can be protected instead of leaving sensitive structure exposed.
Archives can be divided for cloud objects, removable drives, discs, and offline media while retaining recovery options for damaged or missing pieces.
Large archives can be listed, verified, and restored selectively without turning every recovery into an all-or-nothing extraction.