Encrypt files with NIST-standardized algorithms that resist both classical and quantum computer attacks. One command. Quantum-safe.
Classical cryptography (RSA, ECDH) will be broken by quantum computers. "Harvest now, decrypt later" is happening today.
NIST FIPS 203 — the post-quantum key encapsulation standard. 192-bit quantum security. Resists Shor's algorithm on quantum computers.
Authenticated encryption with associated data. Industry-standard symmetric cipher. Quantum-resistant at 256-bit key size.
Hierarchical key derivation from shared secrets. Each encryption uses unique salt for complete key separation.
Adversaries store encrypted data today to decrypt with future quantum computers. pqguard makes this impossible.
| Component | Algorithm | Standard | Security |
|---|---|---|---|
| Key Exchange | ML-KEM-768 | NIST FIPS 203 | 192-bit quantum |
| Key Derivation | HKDF-SHA256 | RFC 5869 | 128-bit |
| Symmetric Cipher | AES-256-GCM | NIST SP 800-38D | 256-bit |
| Encoding | Base64 | RFC 4648 | — |
32-byte salt for key derivation, 12-byte nonce for AES-GCM. Unique per encryption.
Generate shared secret + ciphertext using recipient's public key. Only they can recover the secret.
HKDF-SHA256(shared_secret, salt) → 256-bit AES key. Domain-separated per file.
Authenticated encryption of file contents. Tamper-evident ciphertext with 128-bit auth tag.
Magic bytes + version + KEM ciphertext + nonce + salt + encrypted data. Self-contained file.
One command. Quantum-safe encryption.
Install pqguard and encrypt your first file in 30 seconds.