ROOT_KEY
Lives only on the server in a hardware-backed secret store. Used to wrap every user’s KEK and never leaves the vault.
CLOUD · ENCRYPTION
Write on your phone, finish on your laptop. AES-256-GCM envelope encryption means even the database only sees ciphertext. Free works on a single device; Premium unlocks every device.
BANK-GRADE VAULT
AES-256-GCM envelope encryption with a three-key chain. Even the server-side database sees nothing but ciphertext — there is no plaintext on the network, ever.
KEY CHAIN
Each layer wraps the next so a single key compromise never exposes user data. Lose the device, lose the KEK — your notes remain sealed behind the ROOT_KEY.
Lives only on the server in a hardware-backed secret store. Used to wrap every user’s KEK and never leaves the vault.
One Key Encryption Key per user. Sealed by ROOT_KEY and stored ciphertext-only in the database. Decrypts to plaintext only inside a process-local memory boundary.
Every note gets its own Data Encryption Key. Sealed by your KEK and rotated on every edit so a leaked DEK only exposes a single revision.
DATA FLOW
Note plaintext + your KEK seal a fresh DEK → AES-256-GCM ciphertext.
Ciphertext + nonce + tag go to /notes over a pinned TLS 1.3 channel.
Only the ciphertext blob is written to the database. ROOT_KEY never decrypts.
The ciphertext flows down. Your local KEK unseals the DEK and decrypts in-memory only.
EVERY DEVICE
Same encrypted notes everywhere. Write once, sync everywhere, sealed end-to-end on the wire.
Write a note on your phone walking home, open your laptop, the same note is there — synced through Noteminator cloud over TLS 1.3.
Every note is wrapped by its own Data Encryption Key (DEK). Every DEK is wrapped by your Key Encryption Key (KEK). Every KEK is wrapped by the server-side ROOT_KEY.
A database leak exposes ciphertext blobs and nothing else — there is no plaintext on the server, ever. Anayasa Section 23 enforced at the SQL layer.
Lose connectivity? Notes continue to save locally. When the network comes back, queued changes sync up — last-write-wins per note.
No ads, no analytics, no plaintext on the wire. The same encryption posture that protects your bank account, applied note-by-note to everything you create with Noteminator.