What Never Leaves
Private document storage, explained
Every app claims to respect your privacy. Here is the mechanism, and the parts that are less tidy than the slogan.
Every app says it’s private. This one is holding my passport, my payslips and my bank statements. What actually stops someone reading them?
— a fair question to ask of any vault
Your master password is never stored. It goes through a deliberately slow calculation, and what comes out unwraps the vault key. That slowness is the point: it makes guessing expensive even for someone holding your disk.
What crosses the boundary
Reading your documents, pulling out the dates and building the search index all happen here, with models on your own disk. Four things can reach the network, and you control every one.
The limits, stated plainly
A privacy page that lists only strengths is marketing. Three things are worth knowing.
The keyword index holds words
Searching for a word means the words have to be stored somewhere searchable — you cannot build a keyword index over scrambled text. That index lives inside the encrypted database, so it is protected by your master password like everything else, but within the database it is readable text rather than ciphertext.
Unlocked means unlocked, until you quit
Locking the vault clears your keys from memory and hides your data behind the password again. The underlying database connection, though, stays open until you quit the app. Auto-lock protects you from someone walking up to your desk; quitting is what puts everything fully back in the box.
Nobody can help you get back in
No password reset email, because there is no account. This is the direct consequence of the good part — the same absence of a company holding your key is why nobody can be compelled to hand it over.
Checking it yourself
- Open the vault file in a text editorYou should see nothing readable. If you can read your paperwork, something is wrong.
- Pull out the network cableImport, read, search, open. All of it works offline.
The short version
Your documents are encrypted with a key only your password produces. The reading and understanding happen on your machine. What leaves is a licence check and whatever you explicitly ask to send. The cost of that design is that you are genuinely the only one who can get in — which is why articles 01 and 06 spend so long on the recovery key and the backup.