anonym.legal

By · Last updated 2026-05-18

Πίσω στο BlogGDPR & Συμμόρφωση

Dutch AP: BSN, DigiD και οι Αυστηρότερες Απαιτήσεις...

Το ολλανδικό BSN (Burgerservicenummer) είναι το πιο αυστηρά προστατευμένο αναγνωριστικό στην ΕΕ.

May 18, 20269 λεπτά ανάγνωσης
Dutch APBSN detectionUber GDPR fineNetherlands compliancedata transfer GDPR

BSN: Το Πιο Αυστηρά Προστατευμένο Ευρωπαϊκό Αναγνωριστικό

Το Burgerservicenummer (BSN) είναι ο ολλανδικός αριθμός κοινωνικής ασφάλισης:

  • Μορφή: 9 ψηφία
  • Επικύρωση: Modulo-11 (σταθμισμένο άθροισμα)
  • Ειδική νομική προστασία: Άρθρο 46 Wet bescherming persoonsgegevens — μόνο εξουσιοδοτημένοι φορείς μπορούν να επεξεργαστούν BSN

Ολλανδική Νομική Ιδιαιτερότητα

Η Ολλανδία έχει αυστηρότερο εθνικό νόμο για BSN από τον GDPR:

  • Ο GDPR επιτρέπει επεξεργασία εθνικών αναγνωριστικών υπό συνθήκες (Άρθρο 87)
  • Η ολλανδική νομοθεσία απαγορεύει επεξεργασία BSN εκτός νόμιμων χρήσεων
  • Ακόμα και η «ανάγνωση» BSN από ανεξουσιοδότητο φορέα είναι παράνομη

Πρόστιμα Autoriteit Persoonsgegevens (AP)

  • €440.000 σε supermarket chain που ζητούσε BSN για ταμειακές κάρτες (2024)
  • €830.000 σε ασφαλιστική εταιρεία για ανεπαρκή προστασία BSN σε emails
  • Συνεχείς έρευνες στον τομέα χρηματοοικονομικών

Τεχνική Επικύρωση BSN

def validate_bsn(bsn: str) -> bool:
    if len(bsn) != 9 or not bsn.isdigit():
        return False
    # 11-proef
    weights = [9, 8, 7, 6, 5, 4, 3, 2, -1]
    total = sum(int(d) * w for d, w in zip(bsn, weights))
    return total % 11 == 0

Πηγές:

Έτοιμοι να προστατεύσετε τα δεδομένα σας;

Ξεκινήστε την ανωνυμοποίηση PII με 285+ τύπους οντοτήτων σε 48 γλώσσες.

About this page

We update this page when our platform or the law changes.

Read our founder note for how we work.

Each change shows up in the timestamp at the top.

Related reading

We follow these rules

  • GDPR (EU 2016/679).
  • ISO/IEC 27001:2022.
  • NIS2 (EU 2022/2555).
  • HIPAA safe harbor under 45 CFR § 164.514(b)(2).

Our promise

We do not sell your data.

We do not train models on your text.

We store your files in Germany.

You can delete your account at any time.

You own your work.

Where we run

Our servers live in Falkenstein, Germany.

We use Hetzner. They hold ISO 27001 certification.

All data stays in the EU.

Backups run every day.

Need help?

Email support@anonym.legal.

We reply within one business day.

How we test

We run a full check suite on every release.

Each surface gets its own sweep script and report.

Human reviewers spot-check the output each week.

We track recall and precision on a labelled set.

Bad runs block the deploy.

What we never do

  • We never sell your information to third parties.
  • We never train models on what you upload.
  • We never keep your work after you delete it.
  • We never share keys with any outside firm.
  • We never run ads inside the product.

Plans in plain words

We sell credits, not seats.

One credit covers one short job.

Long jobs use a few credits each.

You can top up at any time.

Unused credits roll over each month.

Read the plans page for current rates.

Who built this

A small team of engineers and lawyers built this.

We ship from Europe and work in the open.

Our founder note spells out why we started.

Where to start

How the parts fit

A browser add-on cleans text inside Chrome.

A Word plug-in handles drafts in Office.

A small desktop tool works on whole folders.

An agent protocol link feeds large models safely.

All four share one core engine and one rule set.