Every database field. Quantum encrypted.
Field-level AES-256-GCM encryption with unique quantum-derived keys per row. SQLAlchemy, Django, Prisma, Mongoose — 2 lines of code.
# BEFORE (standard SQLAlchemy):
email = Column(String)
# AFTER (Quantum DB Shield):
email = Column(QuantumEncryptedString(shield, 'users', 'email'))
# That's it. Encryption is transparent.
Quickstart
# 1. Create an API key in your dashboard → API Keys
export QNTYX_KEY="qntyx_db_…"
# 2. Register a database config
curl -X POST https://dbshield-api.qntyx.io/configs/ \
-H "Authorization: Bearer $QNTYX_KEY" -H "Content-Type: application/json" \
-d '{"database_name": "production"}'
# 3. Encrypt a sensitive field value (per-row key derivation)
curl -X POST https://dbshield-api.qntyx.io/keys/encrypt \
-H "Authorization: Bearer $QNTYX_KEY" -H "Content-Type: application/json" \
-d '{"database_name": "production", "table_name": "users", "field_name": "ssn", "row_id": "1", "plaintext": "123-45-6789"}'
Built for compliance
PCI DSS Req 3.5
"Primary account numbers must be rendered unreadable anywhere they are stored." Card numbers, CVVs, and PANs encrypted at the field level — each with a unique quantum key.
HIPAA § 164.312
"Implement a mechanism to encrypt and decrypt electronic PHI." PHI fields encrypted at rest with AES-256-GCM and per-row quantum-derived keys.
GDPR Article 32
"Implement appropriate technical measures including encryption." EU personal data protected with per-field quantum encryption — a breach triggers no mass exposure.
Schema-aware PII detection
users
· id LOW
🔒 email HIGH
🔒 ssn HIGH
🔒 credit_card HIGH
⚠ full_name MEDIUM
· created_at LOW
Auto-detects 20+ PII patterns. One click to encrypt all flagged fields.
Pricing
Professional
$149/mo
- 5 databases
- Unlimited tables
- 1M encryptions/mo
- Tamper scan
- Compliance reports