Blog

Compliance guides, best practices, and technical deep-dives for developers building with AI.

GDPRFebruary 10, 2026

GDPR-Compliant AI: How to Process EU Data Safely

Learn how to use AI with European user data while staying fully GDPR compliant. Covers tokenization, EU region processing, and audit trails for DPAs.

9 min read
HIPAAFebruary 12, 2026

HIPAA and AI: Protecting PHI in US Healthcare Apps

How to build AI-powered healthcare applications that protect PHI. Covers the hipaa_us policy, encryption mode, Safe Harbor de-identification, and BAA readiness.

10 min read
Data ResidencyFebruary 15, 2026

Data Residency for AI Applications

Why data residency matters for AI apps processing personal data. Covers GDPR Articles 44-49, Schrems II, and how regional API endpoints solve cross-border data transfer.

8 min read
EU AI ActFebruary 18, 2026

EU AI Act Compliance Checklist for Developers

A practical checklist for developers building AI applications under the EU AI Act. Covers risk classification, transparency requirements, and implementation steps.

11 min read
EngineeringFebruary 21, 2026

PII Detection in Python: Regex vs. Presidio vs. Managed API

An honest comparison of three approaches to PII detection in Python: hand-rolled regex, Microsoft Presidio with spaCy, and a managed API. Includes working code, accuracy tradeoffs, and a decision framework.

10 min read
LangChainFebruary 21, 2026

How to Protect PII in LangChain Pipelines

Add PII protection to any LangChain chain in two lines of code. Covers tokenization, RAG document transformers, compliance policies, and EU data residency with langchain-blindfold.

9 min read
PrivacyFebruary 21, 2026

How to Remove PII Before Sending Data to Your LLM

Learn how to strip personally identifiable information from prompts before sending them to OpenAI, Anthropic, or any LLM. Covers regex, NER models, and API-based tokenization with working Python and JavaScript code.

8 min read
RAGFebruary 25, 2026

How to Build a PII-Safe RAG Pipeline

RAG pipelines are the #1 pattern where PII leaks into LLMs. Learn how to protect personal data with two-layer privacy: ingestion-time redaction and query-time tokenization using ChromaDB, OpenAI, and Blindfold.

10 min read
PrivacyFebruary 25, 2026

RAG Without Leaking Customer Data: A Practical Guide

Build a customer support RAG chatbot that never exposes personal data to your LLM provider. Covers attack surfaces, multi-turn conversations, GDPR compliance, and a production-ready architecture.

11 min read
LangChainFebruary 25, 2026

Protecting PII in LangChain RAG Pipelines

Use BlindfoldPIITransformer and blindfold_protect() to add PII protection to LangChain RAG pipelines. Covers document ingestion, retrieval chains, and compliance policy recommendations.

9 min read
HIPAAFebruary 26, 2026

Role-Based Patient Data Protection in Healthcare RAG Systems

Implement role-based PII control in healthcare RAG pipelines. Doctors, nurses, billing clerks, and researchers each see only the patient data their role permits, satisfying HIPAA minimum necessary requirements.

11 min read
PrivacyFebruary 26, 2026

Role-Based Candidate Privacy in HR and Recruiting RAG Systems

Implement role-based PII control in HR and recruiting RAG pipelines. HR managers, recruiters, interviewers, and hiring committees each see only the candidate data their role permits, enabling blind hiring and GDPR compliance.

12 min read
FinanceFebruary 26, 2026

Role-Based Client Data Protection in Financial RAG Pipelines

Implement role-based PII control in financial services RAG systems. Relationship managers, risk analysts, compliance officers, and external auditors each see only the client data their role permits, satisfying PCI DSS, SOX, GDPR, and MiFID II requirements.

12 min read
LegalFebruary 26, 2026

Privilege-Aware Document Search: Role-Based PII Control for Legal RAG

Build RAG systems for law firms where partners, associates, paralegals, and client portals each see appropriate levels of case data. Supports ethical walls, attorney-client privilege, and ABA compliance.

10 min read
PrivacyMarch 3, 2026

How to Scan Files and Directories for Sensitive Data

Use Blindfold SDK to find PII hiding in CSV exports, JSON fixtures, config files, and documents. Examples in Python, JavaScript, Java, Go, and .NET.

6 min read
ProductMarch 3, 2026

Local Mode vs Cloud API: Which PII Detection Engine Should You Use?

Compare Blindfold's two detection engines: Local Mode (regex, offline, free) and Cloud API (NLP-powered, 60+ entity types). Learn what each detects and when to use which.

5 min read
EngineeringMarch 3, 2026

How to Prevent PII from Leaking into Your Log Files

Wrap your logger so PII is automatically redacted before it reaches disk. Examples for Python, JavaScript (Winston), Java (SLF4J), Go (slog), and .NET (ILogger) using the Blindfold SDK.

5 min read
PrivacyMarch 3, 2026

Stop Leaking Customer Data to LLMs — A Developer's Guide

Every LLM API call logs your input. If it contains names, emails, or SSNs, you just sent PII to a third party. Here's a 60-second fix with working Python code — local mode included, no API key required.

8 min read