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, ... TiB for binary units (default), as well as KB, MB, ... TB for decimal units.

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.2.tar.gz (26.7 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.2-py3-none-any.whl (15.7 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: vault_tar-0.1.2.tar.gz
  • Upload date:
  • Size: 26.7 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.2.tar.gz
Algorithm Hash digest
SHA256 673e5f0cb6929e40325122215997066a90283a8f68d4ec7edaba0f592661a65b
MD5 c6bcff3c414cb722bd20043e1db0cea0
BLAKE2b-256 cbc7799abfb094b4aae3ad0a5a75b4a244b161840d89850f9ba732babb164047

See more details on using hashes here.

Provenance

The following attestation bundles were made for vault_tar-0.1.2.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.2-py3-none-any.whl.

File metadata

  • Download URL: vault_tar-0.1.2-py3-none-any.whl
  • Upload date:
  • Size: 15.7 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.2-py3-none-any.whl
Algorithm Hash digest
SHA256 cb510bbe5164443308dbf3041d5af71f539facab60db7ea889569efc426c7262
MD5 67af8b88d468dc698ba7a03674ccdb92
BLAKE2b-256 9e21a2b6ec51e961a825a642825a06f1275e6f7eb7084626fbb26a40ce3f9d8e

See more details on using hashes here.

Provenance

The following attestation bundles were made for vault_tar-0.1.2-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