Chapter 6

Privacy-Preserving Technologies

Privacy-preserving technologies enable the beneficial use of health data while protecting individual privacy. These technologies address the fundamental tension between data utility and data protection, enabling research, analytics, and care coordination without exposing sensitive patient information. From de-identification techniques that remove identifiers to cryptographic methods that enable computation on encrypted data, these technologies are transforming what is possible in healthcare data use.

The Privacy-Utility Challenge

Healthcare faces a fundamental challenge: valuable insights lie within patient data that could improve care, advance research, and reduce costs, but accessing that data creates privacy risks. Traditional approaches forced a choice between data access and privacy protection. Privacy-preserving technologies offer a third path—enabling data analysis while maintaining privacy guarantees. Understanding these technologies helps organizations unlock data value while meeting privacy obligations.

The selection of privacy-preserving approaches depends on use case requirements, acceptable privacy risk, needed analytical capabilities, and implementation complexity. No single technology addresses all scenarios; effective privacy programs combine multiple approaches based on the specific requirements of each data use case. The goal is to use the minimum data exposure necessary to achieve legitimate purposes.

87%
US Population Identified from 3 Attributes
$2.5B
Privacy Tech Market by 2026
97%
Linkage Rate for Simple De-identification
10x
Increase in Synthetic Data Adoption

De-identification Methods

De-identification removes or transforms personally identifiable information so that data no longer identifies individuals. HIPAA provides two methods for de-identification: Expert Determination and Safe Harbor. Properly de-identified data is not PHI and can be used without HIPAA restrictions, making de-identification a powerful tool for enabling research and analytics while protecting privacy.

HIPAA Safe Harbor Method

The Safe Harbor method requires removal of 18 specific identifiers and requires that the covered entity have no actual knowledge that the remaining information could identify an individual. This method is straightforward to implement but results in significant data loss that may limit analytical utility. It works well for simple data releases but may be insufficient for complex datasets with rare conditions or small populations.

Identifier Category HIPAA Requirement Implementation Approach
Names Remove all names Complete removal or replacement with pseudonyms
Geographic Data Remove below state level (ZIP codes retain first 3 digits if population >20,000) Truncate ZIP codes; generalize to region
Dates Remove all elements except year for dates related to individual; ages >89 generalized Keep year only; generalize ages; shift dates uniformly
Phone/Fax Numbers Remove completely Complete removal
Email Addresses Remove completely Complete removal
SSN/Medical Record Numbers Remove or replace Remove or replace with study-specific pseudonyms
Device/Vehicle Identifiers Remove completely Remove serial numbers; generalize device types
Web Identifiers Remove URLs and IP addresses Complete removal
Biometrics Remove identifiers including photos Remove; deface images if clinically necessary

Expert Determination Method

The Expert Determination method allows greater data retention by requiring a qualified statistical expert to determine that re-identification risk is very small. This method enables preservation of more data utility but requires specialized expertise and documentation. The expert must apply statistical and scientific principles, considering the data itself, potential linkage sources, and the data recipient.

Expert Determination Requirements

Re-identification Risks

De-identified data is not risk-free. Research has demonstrated successful re-identification of supposedly anonymous data using linkage attacks, inference attacks, and auxiliary information. Healthcare data is particularly vulnerable due to rare conditions, unique treatment patterns, and the wealth of publicly available health-adjacent information. Understanding these risks helps organizations implement appropriate safeguards beyond basic de-identification.

Attack Type Description Mitigation
Linkage Attack Combine de-identified data with external datasets to identify individuals Generalization; suppression; data use agreements
Inference Attack Deduce sensitive attributes from remaining data Attribute generalization; noise addition
Uniqueness Attack Exploit rare combinations of attributes that uniquely identify individuals k-anonymity; cell suppression
Differencing Attack Compare multiple releases to identify changes Differential privacy; consistent noise
Background Knowledge Attack Use known information about targets to identify them in datasets Broader generalization; synthetic data

Anonymization Techniques

Beyond HIPAA's de-identification standards, various anonymization techniques provide formal privacy guarantees. These techniques, developed in the computer science and statistical disclosure control communities, offer mathematical frameworks for protecting privacy while preserving data utility. Each technique provides different privacy guarantees and has different impacts on data utility.

K-Anonymity

K-anonymity ensures that every record in a dataset is indistinguishable from at least k-1 other records with respect to quasi-identifiers (attributes that could be linked to external data). This prevents unique identification of individuals but does not protect against attribute disclosure when sensitive values are homogeneous within equivalence classes.

K-Anonymity Example (k=3): Original Data: | ZIP Code | Age | Disease | |----------|-----|------------| | 13053 | 28 | Diabetes | | 13068 | 29 | HIV | | 13068 | 21 | Cancer | K-Anonymized (k=3): | ZIP Code | Age | Disease | |----------|-------|------------| | 130** | 20-30 | Diabetes | | 130** | 20-30 | HIV | | 130** | 20-30 | Cancer | Each record matches at least 2 others on quasi-identifiers

L-Diversity and T-Closeness

L-diversity extends k-anonymity by requiring that each equivalence class contains at least l "well-represented" values for sensitive attributes, protecting against attribute disclosure. T-closeness further strengthens protection by requiring that the distribution of sensitive attributes within each class is close to the overall distribution, preventing skewness attacks.

Technique Privacy Guarantee Limitations
K-Anonymity Each record indistinguishable from k-1 others Vulnerable to homogeneity and background knowledge attacks
L-Diversity Each group has l diverse sensitive values May still leak information through skewed distributions
T-Closeness Sensitive attribute distribution close to overall High information loss; challenging to implement

Differential Privacy

Differential privacy provides a mathematical framework that guarantees analysis results are nearly identical whether or not any individual's data is included. This is achieved by adding carefully calibrated random noise to query results or data. Differential privacy provides strong, provable privacy guarantees and has become increasingly important for statistical analysis and machine learning on sensitive data.

Differential Privacy Concept

A mechanism M satisfies ε-differential privacy if for any two datasets D1 and D2 differing in at most one record, and any possible output S:

Pr[M(D1) ∈ S] ≤ e^ε × Pr[M(D2) ∈ S]

The privacy parameter ε (epsilon) controls the privacy-utility tradeoff. Smaller ε provides stronger privacy but more noise. Typical values range from 0.1 (strong privacy) to 10 (weak privacy).

Healthcare Applications of Differential Privacy

Synthetic Data Generation

Synthetic data is artificially generated data that mimics the statistical properties of real data without containing actual patient records. Properly generated synthetic data preserves analytical utility—correlations, distributions, and patterns—while eliminating direct privacy risks. Synthetic data is increasingly used for software development, algorithm training, and exploratory analysis where real data would be difficult to access.

Synthetic Data Methods

Method Description Privacy-Utility Tradeoff
Statistical Models Generate data based on fitted statistical distributions Lower fidelity but stronger privacy; good for simple datasets
Generative Adversarial Networks (GANs) Deep learning models learn to generate realistic data High fidelity but potential for memorization; requires careful tuning
Variational Autoencoders (VAEs) Learn latent representations and generate from learned space Controllable generation; good for structured data
Sequential Models Generate time-series and longitudinal data Preserve temporal patterns; healthcare EHR applications
Differentially Private Synthetic Data Add DP guarantees to synthetic generation Formal privacy guarantees; utility depends on privacy budget

Evaluating Synthetic Data

Synthetic data must be evaluated for both utility and privacy. Utility evaluation assesses whether the synthetic data preserves the statistical properties needed for intended uses. Privacy evaluation assesses whether the synthetic data could enable re-identification or leak sensitive information. Both aspects must be validated before synthetic data is deployed.

Synthetic Data Privacy Considerations

Federated Learning and Analytics

Federated learning enables collaborative machine learning across multiple organizations without sharing raw data. Models are trained locally at each site, and only model updates (not patient data) are shared and aggregated. This approach enables multi-institutional research and AI development while keeping patient data within institutional boundaries. Healthcare is a natural application given the distributed nature of health data and regulatory barriers to data sharing.

Federated Learning Architecture

Federated Learning Process

  1. Initialization: Central server distributes initial model to participating sites
  2. Local Training: Each site trains model on local data; data never leaves site
  3. Update Sharing: Sites share model updates (gradients or weights) with central server
  4. Aggregation: Server aggregates updates to create improved global model
  5. Distribution: Improved model is distributed back to sites
  6. Iteration: Process repeats until model converges

Privacy Enhancements for Federated Learning

Enhancement Purpose Implementation
Secure Aggregation Prevent server from seeing individual site updates Cryptographic protocols aggregate updates without revealing individual contributions
Differential Privacy Prevent inference about individuals from model Add noise to local updates; bounds on contribution
Trusted Execution Protect computations from compromised infrastructure Secure enclaves for aggregation; hardware-based protection
Gradient Compression Reduce information in shared updates Sparse updates; quantization; top-k selection

Homomorphic Encryption

Homomorphic encryption allows computation on encrypted data, producing encrypted results that can be decrypted to obtain the correct answer. This enables data analysis without ever exposing the underlying data to the analyst. While computationally intensive, advances in homomorphic encryption are making it increasingly practical for healthcare applications including secure analytics, encrypted machine learning, and privacy-preserving genomic analysis.

Homomorphic Encryption Types

Healthcare Applications: Secure genomic analysis, encrypted database queries, privacy-preserving machine learning inference, secure multi-party analytics

Secure Multi-Party Computation

Secure multi-party computation (MPC) enables multiple parties to jointly compute functions over their inputs while keeping those inputs private. Each party learns only the output of the computation, not the other parties' data. MPC is valuable for healthcare scenarios where multiple organizations need to combine data for analysis without revealing individual records to each other.

Healthcare Use Case Parties Involved Privacy Benefit
Multi-Site Research Multiple health systems Aggregate statistics without sharing patient records
Rare Disease Registries Treatment centers globally Pool rare condition data while protecting patients
Drug Interaction Analysis Pharmacies, insurers, providers Identify interactions across data silos
Genomic Studies Research institutions GWAS without centralizing genomic data
Fraud Detection Multiple insurers Identify cross-payer fraud patterns

Summary

Key Takeaways

Review Questions

  1. What is the privacy-utility tradeoff? How do privacy-preserving technologies address this challenge?
  2. Describe the HIPAA Safe Harbor de-identification method. What are its advantages and limitations?
  3. How does Expert Determination differ from Safe Harbor? When would you use each approach?
  4. What re-identification attacks threaten de-identified health data? How can these risks be mitigated?
  5. Explain k-anonymity, l-diversity, and t-closeness. What privacy guarantee does each provide?
  6. What is differential privacy? How is the epsilon parameter used to control the privacy-utility tradeoff?
  7. Describe synthetic data generation methods. What are the privacy considerations for synthetic health data?
  8. How does federated learning work? What privacy enhancements can strengthen federated learning?
  9. What is homomorphic encryption? What healthcare applications does it enable?
  10. How does secure multi-party computation enable privacy-preserving collaboration in healthcare?

Korea Standardization Infrastructure Mapping

Korea operates a comprehensive standards governance system through inter-ministerial cooperation. National Standards Council (under Prime Minister's Office, per Framework Act on National Standards Article 5) coordinates KATS (Korean Agency for Technology and Standards), MFDS (Ministry of Food and Drug Safety), MOTIE (Ministry of Trade, Industry and Energy), MSIT (Ministry of Science and ICT), MOIS (Ministry of the Interior and Safety), MOE (Ministry of Environment), MOHW (Ministry of Health and Welfare), MND (Ministry of National Defense), MCST (Ministry of Culture, Sports and Tourism), MOFA (Ministry of Foreign Affairs), MOJ (Ministry of Justice), and FSC (Financial Services Commission). Accreditation and Testing: KOLAS (Korea Laboratory Accreditation Scheme) accredits 800+ testing laboratories. KAS (Korea Accreditation System) accredits 50+ certification bodies. KTC (Korea Testing Certification), KTR (Korea Testing & Research Institute), KTL (Korea Testing Laboratory), and KCL (Korea Conformity Laboratories) provide conformance testing. Telecom and Cyber: KCC (Korea Communications Commission), KCA (Korea Communications Agency), TTA (Telecommunications Technology Association), IITP (Institute for Information & Communications Technology Planning & Evaluation), NIPA (National IT Industry Promotion Agency), KISA (Korea Internet & Security Agency), KCMVP (Korea Cryptographic Module Validation Program), NIS (National Intelligence Service), NSR (National Security Research Institute), and NCSC (National Cyber Security Center). National R&D Centers: KIST, ETRI, KAIST, Seoul National University, Yonsei University, Korea University, POSTECH, UNIST, GIST, DGIST, KISTI, KIER, KIMM, KRICT, KFRI, KRIBB. International Standards Cooperation: ISO TC/SC Korean secretariats, IEC TC/SC Korean secretariats, ITU-T Study Group Korean chairs, 3GPP RAN/SA Korean chairs, IEEE 802 Korean chairs, W3C Korea office, OASIS Korea office, IETF Korea cooperation, OECD CSTP, UN ESCAP, APEC SCSC Korean cooperation. Korean Industrial Standards (KS) Catalog: KS X (Information) 25,000+, KS A (Basic) 15,000+, KS B (Machinery) 25,000+, KS C (Electrical) 18,000+, KS D (Metallurgy) 12,000+, KS E (Mining) 5,000+, KS F (Construction) 18,000+, KS H (Food) 8,000+, KS I (Environment) 5,000+, KS J (Biology) 3,000+, KS K (Textile) 15,000+, KS L (Ceramics) 7,000+, KS M (Chemistry) 12,000+, KS P (Medical) 5,000+, KS Q (Quality Mgmt) 4,000+, KS R (Transport) 12,000+, KS S (Service) 3,000+, KS T (Packaging) 4,000+, KS V (Shipbuilding) 5,000+, KS W (Aerospace) 3,000+ — totaling 220,000+ Korean Industrial Standards. Key Acts: Personal Information Protection Act (Act 19234, effective Sept 15, 2024), Electronic Government Act, Electronic Signature Act, Act on Promotion of Information and Communications Network Utilization and Information Protection, Information and Communications Infrastructure Protection Act, Data Industry Act, Public Data Act, AI Framework Act (Act 20212, effective July 2026), Industrial Technology Innovation Promotion Act, Framework Act on Science and Technology — 70+ Korean standardization-related laws.

Korea Digital Transformation Detailed Mapping

Korea operates digital transformation through a comprehensive governance system. Digital Government: Digital Platform Government Committee (established September 2022, under the President)·Ministry of the Interior and Safety Digital Government Bureau·e-Government Support Center·Gov.kr·National Citizen Service·KDIS (Korea Digital Information Society)·NIA (National Information Society Agency)·MOIS (Ministry of the Interior and Safety). K-DNS Infrastructure: Korea Internet & Security Agency (KISA) Korea Internet Center·KISA DNS Root Server·KRNIC (Korea Network Information Center)·BGP Korea·National Cyber Security Center (NCSC)·KCC (Korea Communications Commission)·MSIT (Ministry of Science and ICT)·NIA·NIPA. Korean Cloud Infrastructure: KT Cloud·NAVER Cloud (NCloud)·Samsung SDS Cloud·LG U+ Cloud·NHN Cloud·Kakao Enterprise Cloud·SK Telecom Cloud·KISA Cloud Security Assurance Program (CSAP)·KCMVP-validated cloud·ISMS-P (Information Security & Personal Information Management System). Korean Security Certifications: KISA ISMS-P certification·KCMVP (Korean Cryptographic Module Validation Program)·NIS (National Intelligence Service) "National Cryptographic Technology Operation Standards"·NCSC "National Cyber Security Strategy 2024-2028"·CC (Common Criteria) Korean evaluation bodies·EAL4·EAL5·KS X ISO/IEC 15408·19790·24759 Korean Profile. Korean Data Standards: NIA AI Hub·National Data Standardization Committee·Statistics Korea (KOSTAT)·MyData 4 Designated Combination Specialists (Samsung SDS, KICI, KOSTAT, KFTC)·National Institute of Korean Language·National Law Information Center·National Spatial Information Platform·National Spatial Data Center·Korean Spatial Information Standards. Finance and Fintech Standards: FSC (Financial Services Commission)·FSS (Financial Supervisory Service)·FIU (Financial Intelligence Unit)·BOK (Bank of Korea)·FSEC (Financial Security Institute)·KFTC (Korea Financial Telecommunications)·KSD (Korea Securities Depository)·KRX (Korea Exchange) 8-agency cooperation. 5G/6G Communications Infrastructure: 5G subscribers 35 million (2024)·5G base stations 350,000·6G commercialization target 2028·5G dedicated networks 16 operators·6G Acceleration Council (MSIT, 2024). K-Content: KOCCA (Korea Creative Content Agency)·MCST (Ministry of Culture, Sports and Tourism)·KCA (Korea Communications Agency)·Korea Culture Information Service Agency·Korean Film Archive·Korea Publishing Industry Promotion Agency. Data 3 Acts (Personal Information Protection Act·Credit Information Act·Telecommunications Network Act, 2020 enforcement)·Data Industry Act (2021)·Public Data Act (2013)·AI Framework Act (2026)·Digital Platform Government Framework Act (2024 proposed) — Korea digital transformation core legislation.

Korea Industrial, Research, Education Infrastructure Mapping

Korea operates its industrial ecosystem and standardization system through the following core infrastructure. Korea Top 5 Groups: Samsung, Hyundai Motor, LG, SK, Lotte. Each group operates standardization committees and ISO/IEC TC Korean secretariats. Samsung Electronics (semiconductors, displays, home appliances, telecom)·Hyundai Motor (automobiles, mobility)·LG Electronics (home appliances, displays, OLED)·SK hynix (memory)·LG Energy Solution·Samsung SDI (batteries)·POSCO Future M (materials)·Hyundai Mobis (parts). Korean IT Big Tech: NAVER (search, cloud, AI HyperCLOVA)·Kakao (messenger, payment, mobility, banking)·Coupang (e-commerce, logistics)·Karrot Market·Toss·Woowa Brothers. Korea Telcos: SK Telecom·KT·LG U+. 5G·5G dedicated networks·B2B cloud·AI businesses operating. Korea Top 7 Research Universities: Seoul National University·KAIST·POSTECH·Yonsei University·Korea University·UNIST·DGIST·GIST. All serve as standardization R&D bases and ISO/IEC/IEEE Korean chairs. Korea Government-affiliated National Research Institutes (26): KIST, KAERI, KIMM, KIER, KFRI, KRICT, KRIBB, KARI, KASI, KIGAM, KICT, KISTI, KETI, ETRI, NIMS, KIMS, KISDI, KOTRA, STEPI, KOEN, KICCE, KIET, KIPF, KIHASA, KICJ, KLRI. Korea Industrial Complexes / Tech Valleys: Pangyo Techno Valley·Dongtan·Gwanggyo·Songdo IBD·Yeouido·Gangnam·Sihwa·Banwol·Gumi·Ulsan·Changwon·Geoje·Yeosu·Onsan·Cheongju·Iksan·Gwangyang·POSCO Gwangyang Steel Mill·Asan Bay·Seosan·Songdo·Incheon Airport·Sejong·Cheongna·Geomdan. Korea Trade and Finance Infrastructure: Korea International Trade Association (KITA)·Korea Trade-Investment Promotion Agency (KOTRA)·Export-Import Bank of Korea (KEXIM)·Bank of Korea·Kookmin Bank·Shinhan·Hana·Woori·NH Nonghyup·IBK Industrial Bank·SC First Bank·Citi Bank Korea·HSBC Korea·DBS Korea — 14 Korean major banks and foreign banks. Korea K-POP / K-Content: HYBE·SM·YG·JYP 4 major entertainment companies·CJ ENM·tvN·MBC·KBS·SBS·EBS·YTN·Yonhap News TV·JTBC Korean broadcasting·NETFLIX Korea·Disney Plus·TVING·Wavve·Watcha·Coupang Play. Korea Gaming Industry: Nexon·NCsoft·Krafton·Netmarble·Kakao Games·Pearl Abyss·Com2uS·Gamevil·NHN·Smilegate·Webzen. Korea Automotive / Battery: Hyundai Motor·Kia·Genesis·LG Energy Solution·Samsung SDI·SK On·POSCO Future M·EcoPro·L&F battery cathode material suppliers. Korea Semiconductor: Samsung Electronics (HBM3E·HBM4)·SK hynix (HBM3E 12-Hi)·DB HiTek·SK siltron·SK Enpulse·Dongjin Semichem·Seoul Semiconductor·Simmtech·Samsung Display·LG Display.