Skip to main content

AES-256-GCM file and directory encryption with chunked streaming and optional splitting.

Project description

vault-tar

AES-256-GCM file and directory encryption with chunked streaming, configurable compression, and optional output splitting.

Features

  • AES-256-GCM authenticated encryption with PBKDF2-HMAC-SHA256 key derivation (1 200 000 iterations by default).
  • Chunked streaming — encrypts/decrypts in 1 MiB chunks so memory usage stays constant regardless of input size.
  • Compression — choose between xz, gz, bz2, zst (Python ≥ 3.14), or none.
  • Output splitting — split encrypted output into fixed-size parts (default 1 GiB) for easier storage and transfer.
  • Single-file mode — encrypt/decrypt individual files without tar archiving.
  • Directory comparison — recursively compare two directory trees after a round-trip to verify integrity.
  • Progress bars — optional verbose mode (-v) with real-time byte-level progress during compression, encryption, and decryption.

Requirements

Installation

From PyPI

pip install vault-tar

From source

git clone https://github.com/l1asis/vault-tar.git
cd vault-tar
pip install .

Usage

After installation the vtar command is available on your PATH.

Encrypt directories

vtar encrypt -i secret_docs/ photos/ -o encrypted -v

Encrypt with a specific algorithm

vtar encrypt -i data/ -o data --algorithm zst -v        # zstandard (Python ≥ 3.14)
vtar encrypt -i data/ -o data --algorithm gz -v          # gzip
vtar encrypt -i data/ -o data --algorithm none -v        # tar only, no compression

Encrypt a single file (skip archiving)

vtar encrypt -i backup.sql -o backup.enc --file-only --no-split

Decrypt

vtar decrypt -i encrypted -o restored/ -v
vtar decrypt -i backup.enc -o backup.sql --file-only

Compare directories

Verify that decrypted output matches the original:

vtar compare original/ restored/ -v

Additional options

Flag Description
-v, --verbose Show progress bars and status messages
--password TEXT Supply password on command line (prompted if omitted)
--algorithm {xz,gz,bz2,zst,none} Compression algorithm (default: xz)
--compression-level N Algorithm-specific compression level
--chunk-size SIZE Plaintext chunk size (default: 1MiB)
--split-size SIZE Max part-file size (default: 1GiB)
--no-split Write a single output file
--file-only Encrypt/decrypt a single file directly
--cleanup Remove original input after success
-V, --version Show version and exit

Sizes accept human-readable suffixes: KiB, MiB, GiB.

File format

All encrypted output follows a custom binary format (v1):

Header (first part only):
  [2 B]  magic  0xEF01
  [1 B]  format version  0x01
  [2 B]  salt length          [N B]  salt
  [2 B]  base-nonce length    [12 B] base nonce

Chunks (sequential across parts):
  [4 B]  ciphertext length    [N B]  ciphertext (plaintext + 16 B GCM tag)

Each chunk uses a unique nonce derived as base_nonce XOR chunk_index (big-endian, 12 bytes) with AAD b"chunk_<index>".

Security

See SECURITY.md for the threat model, cryptographic details, known limitations, and responsible disclosure policy.

Acknowledgments

Built with assistance from GitHub Copilot (Claude Opus 4.6).

License

MIT — Copyright 2026 Volodymyr Horshenin

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

vault_tar-0.1.1.tar.gz (25.4 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

vault_tar-0.1.1-py3-none-any.whl (14.4 kB view details)

Uploaded Python 3

File details

Details for the file vault_tar-0.1.1.tar.gz.

File metadata

  • Download URL: vault_tar-0.1.1.tar.gz
  • Upload date:
  • Size: 25.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for vault_tar-0.1.1.tar.gz
Algorithm Hash digest
SHA256 c1eec292f90cd1b8a739007157010716f7d75190385cc5304a263fdf5e5fb9c1
MD5 e2f2b91ea14b6fe93b86fa2abfb2fd0c
BLAKE2b-256 487efef779acc14b3648b787e087dbcb9f25395fe81a19a5410949b45d190d81

See more details on using hashes here.

Provenance

The following attestation bundles were made for vault_tar-0.1.1.tar.gz:

Publisher: publish-to-pypi.yml on l1asis/vault-tar

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file vault_tar-0.1.1-py3-none-any.whl.

File metadata

  • Download URL: vault_tar-0.1.1-py3-none-any.whl
  • Upload date:
  • Size: 14.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for vault_tar-0.1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 f5f9c90ae43268563a7ae1f07c0785945d86d5c1ed0842f1ad742de61a52e390
MD5 8fe2988eaf769b31e977561a60e4b914
BLAKE2b-256 46c88e1c876e90b9dc7e36f946466e42679c360ecc850eb017ac6c99182c4fee

See more details on using hashes here.

Provenance

The following attestation bundles were made for vault_tar-0.1.1-py3-none-any.whl:

Publisher: publish-to-pypi.yml on l1asis/vault-tar

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page