1. Home
  2. Privacy

Local-first

Your images never leave your machine

StegoPixel is built to be trusted with sensitive material — that is the entire point of the product. So the architecture had to match the promise. Here is exactly what that means, in detail you can check.

The short version

No network calls

The application ships no HTTP client. There is no endpoint for it to report to.

No account

Nothing to sign up for, nothing to sign in to, no licence server to phone home.

No telemetry

No usage analytics, no crash reporting service, no “anonymous statistics” opt-out to find.

No cloud

No sync, no remote processing, no fallback upload when a task looks expensive.

Network usage

This is the part that usually turns out to be untrue in other products, so it is worth being exact. In the current StegoPixel codebase there is no HTTP client, no web request, and no analytics or telemetry library. Analysis, AI detection, hashing, steganography, reporting and database work are all local operations.

The only outbound URLs the application can produce are map links written into a geo-tag report:

The complete list of outbound URLs in the product
URLWhen it is producedWhen it is contacted
openstreetmap.orgWhen a report records coordinates found in an image.Only if you click the link. The app itself never requests it.
maps.google.comSame — as an alternative map reference.Only if you click the link.

Everything else the app opens — a file, a folder, an exported report — is opened through your operating system's default handler, which is you asking Windows to show you a file, not the app uploading one.

You can verify this without trusting us

Run the app with your network disconnected, or watch it in Windows' own resource monitor or firewall. Every feature — including detection and C2PA manifest parsing — keeps working, because none of them depend on a remote service. That is the practical test, and it is available to anyone.

Where your data lives

Everything StegoPixel stores lives under your own Windows user profile, in a single folder. Nothing is written into the application's install directory, and nothing is written anywhere else.

Application data, under %LocalAppData%\StegoPixel
WhatPurpose
settings.jsonYour preferences — theme, language, cleanup profiles, steganography defaults, hashing algorithms.
stegopixel.dbThe local SQLite database: your saved workflows and their execution history. The schema also defines tables for an image index and collections, which the current pre-release build does not populate.
privacy_profiles\*.jsonAny custom cleanup profiles you define.
signing-keys.jsonSigning key pairs, if you create any — see the note below.
Metadata templatesThe reusable tag sets you save for repeated application.
logs\Daily-rotated local diagnostic logs, retained for a week. They are never transmitted.

Because all of it is a normal folder in your profile, it is covered by whatever backup, encryption or profile-roaming you already use. Deleting the folder resets the app; there is no server-side copy that would survive.

If you generate a signing key, protect the key file

Image signing needs a private key, and StegoPixel stores its key pairs in signing-keys.json inside that folder. If you set a passphrase the private key is encrypted; if you do not, it is stored base64-encoded rather than encrypted. Treat that file the way you would treat any private key: keep it out of cloud-synced folders you do not control, and do not share it. This is worth stating plainly because a key file is the one item in the data folder whose exposure has consequences beyond losing your settings.

Cryptography

When you ask StegoPixel to encrypt a hidden payload, it uses AES-256-CBC with the key derived from your passphrase through PBKDF2 using SHA-256 at 100,000 iterations. These are standard, well-understood primitives — nothing bespoke, and nothing that depends on a service being reachable.

Steganography and encryption solve different problems

Steganography hides the existence of a payload. Encryption protects the contents if the carrier is found anyway. You want both: an unencrypted payload inside an image is only as private as the fact that nobody looked. Conversely, encryption does not make an obviously suspicious file less suspicious.

Passphrase strength still matters. PBKDF2's iteration count raises the cost of guessing, but it does not rescue a weak passphrase — the same is true of every tool built on these primitives, including password managers.

Reversibility & destructive operations

StegoPixel never modifies your original images unless you explicitly apply changes. The defaults are chosen so that a mistake is recoverable.

  • Save a copy is the default behaviour — cleaning an image writes a new file rather than overwriting the original.
  • Backups before destructive operations are enabled by default and can be configured.
  • Overwrite warnings are configurable, so you are told before a file is replaced.
  • Deletions go to the Recycle Bin. Permanent deletion is a separate, explicit setting.
  • Confirmation for bulk metadata removal — stripping every tag from a set of files asks first.
  • Undo for metadata edits while you are still in the session.

Microsoft Store packaging

StegoPixel is being prepared for distribution through the Microsoft Store as a packaged desktop application. That changes a few things worth knowing:

  • Signed and verified by the Store. Windows validates the package before installing it, which is the benefit of choosing the Store over a loose installer.
  • The package declares no network capability — its manifest requests full-trust desktop execution and nothing else.
  • Your data still lives in %LocalAppData%\StegoPixel and is untouched by install, update or uninstall of the app itself.
  • Uninstalling removes the application, not your library. Delete the data folder separately if you want it gone.

What this page does not cover

Being precise about a privacy claim means being precise about its boundaries too.

  • This website is not the app. The marketing site loads the Inter font from Google Fonts, so visiting this page does involve a third-party request. The desktop application has no such dependency. If you would rather not make that request, the page falls back cleanly to system fonts.
  • The Microsoft Store itself handles downloads, updates and licensing, under Microsoft's own privacy terms rather than ours. That is a normal consequence of distributing through a store.
  • Once you export a file, it is a file. A report you email, or a cleaned image you upload, leaves your machine by your own action. StegoPixel cannot protect data after you hand it to something else.
  • Metadata you keep is metadata you leak. Privacy cleanup removes what you tell it to remove. If you deliberately preserve GPS coordinates in a file you then publish, the coordinates are published.
Questions this page did not answer?

The FAQ covers the practical questions, and the About page explains how to reach us. If a claim here turns out to be wrong, that is a bug worth fixing — the whole point is that it should be checkable.