Stable Release v2.1

Zero-Knowledge
Data Sovereignty

A stateless cryptographic engine designed for the post-quantum era. Protect sensitive assets with memory-hard Argon2id key derivation and AES-256-GCM authenticated encryption.

Read Protocol
Audited
Open Source
Offline Only
user@quantumpy:~/secrets
~ quantumpy init --mode=paranoid
Initializing cryptographic engine...
~ quantumpy encrypt ./database.sql
Reading source file (2.4 GB)...
Generating Argon2id salt... DONE
Deriving master key (t=4, m=256MB, p=4)...
Processing Block 14,204 1.2 GB/s
Successfully encrypted to database.sql.qenc
Tag: 8a7f-2b9c-1d4e-9f0a
~ _

Core Capabilities

Built on the principle that trust should be mathematical, not institutional.

Memory-Hard KDF

Utilizes Argon2id with tunable memory costs to make GPU brute-force attacks economically impossible.

High Throughput

Optimized for modern multi-core processors. Encrypt gigabytes of data in seconds with SIMD acceleration.

Stateless Integrity

Self-contained .qenc file format. No external databases or key servers required for restoration.

Developer API

Integrate QuantumPy directly into your Python workflows. Our library exposes simple, safe interfaces for complex cryptographic operations.

  • Type-safe configurations
  • Automatic salt & nonce management
  • Stream-based processing for large files
View Full API Reference
from quantumpy import Vault, Config

# Initialize with custom difficulty
config = Config(
    memory_cost=256*1024,  # 256MB
    iterations=4,
    parallelism=8
)

vault = Vault(password="correct-horse-battery-staple", config=config)

# Encrypt file stream
vault.encrypt_file(
    src="./top_secret.docx",
    dest="./top_secret.qenc"
)