Glossary
Anonymization
Altering data so no individual can be re-identified from it, even by combining it with other available information.
Anonymization is the process of altering or removing identifying details from a dataset so that no individual can reasonably be re-identified, including by combining the data with other information an attacker might have access to. Techniques include removing direct identifiers, generalizing values (an exact age becomes an age band), and adding statistical noise.
True anonymization is a much higher bar than pseudonymization or data masking: both of those leave open some path back to an individual, deliberately or not, while properly anonymized data is meant to permanently close that path. Once data is genuinely anonymous, most privacy regulations, including General Data Protection Regulation, no longer treat it as personal data, since the regulation applies to information relating to an identifiable person. In practice, regulators and researchers disagree about how high that bar actually is, given how often "anonymized" datasets have been re-identified using outside data.
Anonymization matters because it can free data for broader analytical use, sharing, or publication without ongoing privacy obligations, if it genuinely meets the standard. differential privacy is a more rigorous, mathematically defined approach to the same goal. The common pitfall is assuming that removing obvious identifiers like name and address is sufficient; unique combinations of quasi-identifiers, such as birth date, ZIP code, and gender, have repeatedly been shown to re-identify individuals in datasets billed as anonymous. Reliable data classification helps flag which fields carry that risk.
Last reviewed September 22, 2026