tracera
Privacy

Privacy model

The Tracera privacy model is one paragraph long. The rest of this page is why it works and how to defend it to a customer's legal team.

The paragraph

Tracera stores no cookies, no persistent identifiers, and no IP addresses. Visitor uniqueness is a daily-rotating salted hash that becomes mathematically unrecoverable after 24 hours. There is no third-party tracker, no advertising integration, and no cross-site profile. All processing happens in the EU.

The mechanism

For each incoming event we compute:

visitor_id = sha256_64(
    daily_salt    // rotates every 24h, destroyed at rotation
    || domain
    || client_ip  // never stored; in-memory only for this hash
    || user_agent
)

Why this isn't personal data

After 24 hours the salt is gone. Without the salt, recovering "which IP+UA produced this hash" requires brute-forcing a SHA-256 keyed-hash against an unknown 256-bit secret. That is not computationally feasible — not for a state-level adversary, not for us.

Under Recital 26 GDPR, data is anonymous if re-identification "by any means reasonably likely to be used" is not practicable. The daily-salt model meets that bar.

Plausible / Fathom precedent. This exact model has been deployed in production for years at Plausible (Estonia) and Fathom (Canada). Tracera adopts it deliberately because it's the most legally tested cookieless approach.

What we therefore do not need

What we still do

Defending the model

If a customer's legal counsel pushes back ("isn't a hash still personal data?"), the answer is:

  1. A hash is personal data only if the recipient can re-identify the subject with reasonably likely means.
  2. The daily salt is destroyed every 24 hours, so the recipient (us) cannot re-identify after 24 hours.
  3. The salt is never given to third parties, so no one else can either.
  4. Within a 24-hour window, the hash is technically pseudonymous — but we never associate it with a name, email, account, or device identifier on our side.

This is the same reasoning Plausible publishes; see their data policy for the long form.