Pricing Contact
WHITEPAPER — March 2026

Zero-Knowledge
AI Compliance

How KI-Shield detects 42 categories of personal data (using 46 recognizers: NER, regex, keyword and context analysis), processes them in a Zero-Knowledge architecture and creates audit-proof documentation with post-quantum signatures.

GDPR Art. 25 & 32 EU AI Act ISO/IEC 42001 BSI C5 NIST FIPS 204

Table of Contents

01

Executive Summary

KI-Shield is a compliance proxy and an additional technical safeguard within the meaning of Art. 25 and Art. 32 GDPR, enabling companies to use Large Language Models (LLMs) such as ChatGPT, Claude and Gemini — without exposing personal data.

The system automatically detects 42 categories of personal data in real time, pseudonymizes them before transmission to the AI provider, and restores the original data after the response. The entire process is documented in a cryptographically signed audit chain.

What makes KI-Shield unique: A Zero-Knowledge Architecture where even the operator cannot read user data. Combined with Post-Quantum Cryptography (ML-DSA-65 + Ed25519 hybrid signatures) that protects audit evidence against future quantum computers.

ki-shield ~ system-overview
$ ki-shield --status --verbose
[SYSTEM] KI-Shield Compliance-Proxy v3.2
[INFRA]  24 containers · Hetzner Dedicated · Location: Germany
[PII]    42 categories · 46 Recognizer (NER+Regex+Keyword) · Threshold 0.7
[CRYPTO] Zero-Knowledge AES-256 · Argon2id Key-Derivation
[SIG]    Hybrid: Ed25519 + ML-DSA-65 (FIPS 204)
[CHAIN]  145+ blocks · hash chain · blockchain anchor
[WAF]    Coraza + OWASP CRS v4 · CrowdSec · Rate Limiting
[AUTH]   JWT EdDSA + API-Keys (kp-) · mTLS · RBAC
[AUDIT]  41 Cron-Jobs · 33 Automations · 8 Security-Layer
[READY]  All 5 protection layers active
02

The Problem

The use of AI language models in regulated industries faces a fundamental dilemma: The productivity gains are enormous, but so are the privacy risks.

4,35 Mio. €
Average cost of a data breach in the EU (IBM Cost of a Data Breach 2024)
20 Mio. €
Maximum GDPR fine or 4% of global annual revenue
35 Mio. €
Maximum EU AI Act fine for violations of prohibited AI practices

Why Existing Solutions Fail

×
Internal Policies — "Please do not enter customer data into ChatGPT" does not work. Studies show that 65% of employees use AI tools despite prohibitions.
×
Local LLMs — Require expensive GPU infrastructure, deliver worse results and must be maintained internally.
×
Enterprise Contracts with OpenAI/Anthropic — Data still leaves the EU. US Cloud Act and FISA 702 enable access by US authorities.
KI-Shield — Users use the world's best LLMs. Personal data never leaves the EU server. No compromise.
03

System Architecture

KI-Shield consists of 24 Docker containers on a dedicated Hetzner server in Germany. The architecture follows the Defense in Depth principle — 8 security layers protect every request.

ki-shield ~ dataflow
$ cat /etc/ki-shield/dataflow.txt
  User                    KI-Shield (EU/DE)                    LLM-Provider
    |                           |                                    |
    |  "Herr Müller hat          |                                    |
    |   Diabetes Typ 2"          |                                    |
    |———————————————>|                                    |
    |                    Layer 1 | TLS 1.3 Terminierung               |
    |                    Layer 2 | WAF (Coraza + OWASP CRS v4)        |
    |                    Layer 3 | CrowdSec + Rate Limiting            |
    |                    Layer 4 | JWT/API-Key Authentication          |
    |                    Layer 5 | PII-Detection (42 categories, 46 Recognizer)       |
    |                           |                                    |
    |                           |  "[PERSON_1] hat                  |
    |                           |   [MEDICAL_1]"                     |
    |                           |——————————————————>|
    |                           |                                    |
    |                           |  "[PERSON_1] should ...           |
    |                           |<——————————————————|
    |                    Layer 6 | De-Pseudonymisierung                |
    |                    Layer 7 | Audit-Chain (Hybrid Signature)       |
    |                    Layer 8 | AES-256 Zero-Knowledge Encryption   |
    |                           |                                    |
    |  "Herr Müller should ...   |                                    |
    |<———————————————|                                    |

Container Overview

Core Services
proxy-api — FastAPI Backend (Starlette)
proxy-db — PostgreSQL 16
caddy — Reverse Proxy + WAF + TLS
redis — Session Cache + Rate Limiting
PII & NLP
presidio-analyzer — PII Detection
presidio-anonymizer — Pseudonymisierung
spacy-nlp — de_core_news_lg (deutsch)
pii-qa — Quality assurance (500 samples/6h)
Security
crowdsec — Intrusion Prevention
wazuh-agent — SIEM/XDR
fail2ban — Brute force protection
watchtower — Container updates
shieldcam-api — Photo verification
shieldvid-api — Video verification
shieldaudit — Blockchain-Audit
polygon-node — Blockchain-Anchor

Infrastructure Hardening

Every container runs with maximum security restrictions:

Read-Only Rootfs
No write access
No New Privileges
Privilege escalation blocked
Network Isolation
Docker Bridge Networks
Auto-Heal 15s
Automatic restart
04

PII Detection Engine

The heart of KI-Shield: A multi-layer detection pipeline that detects personal data using three complementary methods — before it leaves the EU server.

Layer 1: NER
Named Entity Recognition via spaCy de_core_news_lg
Detects contextual entities: person names, organizations, locations, even in complex sentences.
Layer 2: Regex
Pattern-based detection
Structured data: IBAN, tax ID, credit cards, email, phone numbers, IP addresses, IMEI, MAC.
Layer 3: Keyword
Domain-specific detection
Medical diagnoses, religious terms, political affiliations, ethnic designations.

42 PII Categories in 4 Groups

Basic PII (15 categories)
Person E-Mail Telefon IBAN Tax ID Credit Card Address Date of Birth Passport ID Card SVN Driver License Trade Register USt-ID License Plate
Technical (6 categories)
IP Address IMEI MAC Address GPS Coordinates URL Username
Art. 9 GDPR — Special Categories (7 categories)
Health/Medicine Genetics Biometrics Ethnicity Politics Religion Sexuality
Art. 10 + Life Areas (14 categories)
Criminal Law Child Data Finances Employment Education Social Benefits Insurance Trade Union

Quality Assurance

An automated PII QA process tests 500 samples against the detection engine every 6 hours and monitors precision, recall and F1 score. Adversarial test cases specifically check evasion attempts (Unicode tricks, whitespace injection, multilingual input).

05

Zero-Knowledge Architecture

The most radical security feature of KI-Shield: Even the operator cannot read user data. No trust required — cryptographically secured.

ki-shield ~ zero-knowledge-flow
$ explain zero-knowledge
Step 1: Login
  Password → Argon2id(memory=64MB, iterations=3, parallelism=4)
           → 256-bit Encryption Key
           → exists ONLY in RAM (never in DB, never on disk)

Step 2: Data Storage
  Chat message → AES-256-GCM(key=RAM-Key, nonce=random)
                 → encrypted blob in PostgreSQL
                 → without key = random bytes

Step 3: Consequence
   Server admin sees: encrypted blocks
   Database dump contains: nothing readable
   Even if seized: data worthless
   Password reset = data loss (by design)
What KI-Shield Stores
  • ✓ Encrypted blobs (AES-256-GCM)
  • ✓ Argon2id hash of password (for authentication)
  • ✓ Signed audit hashes (integrity proof)
  • ✓ Email address (for login)
What KI-Shield Does NOT Have
  • × Password in plaintext
  • × Encryption key (only in user's RAM)
  • × Readable chat messages
  • × Pseudonym mapping tables in plaintext
06

Post-Quantum Cryptography

Quantum computers will be able to break today's signatures within the next 10–15 years. But audit evidence must hold up for decades. KI-Shield is prepared for this.

Hybrid Signature: Belt & Suspenders

Classical: Ed25519
  • • Elliptic Curve (Curve25519)
  • • 128-bit security level (signature security, not encryption – KI-Shield uses AES-256)
  • • Industry standard, extremely fast
  • • Vulnerable to Shor's algorithm (quantum computers)
Post-Quantum: ML-DSA-65
  • • NIST FIPS 204 (standardized August 2024)
  • • Module-Lattice-Based Digital Signature
  • • NIST Security Level 3 (192-bit)
  • • Resistant to all known quantum attacks
Every audit entry:
signature = { ed25519: sign(hash, classical_key), ml_dsa_65: sign(hash, pq_key) }
// Both must be broken for the signature to fall
Why This Matters for Investors

Since 2024, the BSI recommends the use of Post-Quantum Cryptography for long-lived signatures. From 2025, the eIDAS 2.0 regulation requires quantum-safe signatures for qualified trust services. KI-Shield is one of the first commercial products in Germany to use ML-DSA-65 in production — a clear competitive advantage and a sign of technical excellence.

07

Market & Positioning

23,4 Mrd. $
Global AI Governance Market 2029
(MarketsandMarkets, CAGR 34,8%)
347.000
Law firms, medical practices & tax advisors
in Germany alone
2. Aug 2026
EU AI Act becomes fully applicable
— compliance becomes mandatory

Target Groups

Law Firms
167,000 lawyers in Germany. Attorney-client privilege (ยง203 StGB) prohibits data disclosure. KI-Shield makes ChatGPT compliant with professional law.
Medical Practices & Clinics
100,000+ practices in Germany. Medical confidentiality + GDPR Art. 9 (health data). KI-Shield pseudonymizes diagnoses, findings, patient names.
Enterprises (HR, Finance, Legal)
Every department that works with personal data: applications, contracts, financial data, employee data.
Developers (PII Redaction API)
REST API for programmatic PII detection. 4 endpoints (detect, redact, pseudonymize, redact/zk). Integration into your own workflows via TypeScript SDK.

Competitive Matrix

Feature KI-Shield Private AI Presidio (alone) Azure AI
EU-Hosting (DE)×Self-hosted×
Zero-Knowledge×××
Post-Quantum-Signaturen×××
Chat UI for end users××
REST API
BYOK (own API key)×n/a×
Art. 9 GDPR categoriespartial×partial
Blockchain-Audit-Trail×××
Price (entry)0 €on requestOpen Source$1/1000 calls
08

Business Model & Unit Economics

KI-Shield follows a SaaS model with freemium entry and BYOK principle. The user brings their own API key — KI-Shield has no variable AI costs per request.

Free
0 €
/month
✓ 50 requests/month
✓ 2 Provider
✓ 42 PII categories
✓ 7-day storage
Pro
99 €
/month net
✓ Unlimited requests
✓ 10+ Provider
✓ Echtzeit-Streaming
✓ Audit log export
Business
349 €
/month net
✓ OpenRouter (300+ models)
✓ RBAC API-Keys
✓ Compliance-Reports
✓ Prio-Support
Enterprise
1.999 €
/month net
✓ PII-Redaction REST API
✓ Dedicated support
✓ SLA 99,9%
✓ On-premise available

Unit Economics

ki-shield ~ unit-economics
$ calculate --unit-economics
Infrastructure costs:  ~120 €/month (Hetzner Dedicated)
AI cost per request: 0 € (BYOK — user pays provider directly)
Break-Even:           2 Pro customers or 1 Business customer
Gross margin:          >90% (pure software, no variable AI costs)
LTV/CAC Ziel:         >5x (organic via SEO + trade media)
// Scaling: Vertical scaling up to ~10,000 users on one server.
// Then: Horizontal scaling via Kubernetes or second instance.
09

Compliance Framework

KI-Shield was built from the ground up for regulated industries. The compliance architecture simultaneously addresses multiple jurisdictions and standards.

DSGVO General Data Protection Regulation
Art. 5: Data minimization — only pseudonymized data to LLM
Art. 25: Privacy by Design & Default — Zero-Knowledge architecture
Art. 28: Data processing — DPA with all customers
Art. 32: Security of processing — AES-256, mTLS, 8 layers
Art. 9: Special categories — 7 Art. 9 recognizers active
Art. 35: DPIA conducted and documented
EU AI Act AI Regulation (from August 2026)
Art. 9: Risk management — 20 risks assessed (5x5 matrix)
Art. 13: Transparency — audit trail for every AI interaction
Art. 15: Accuracy — PII QA every 6 hours
Art. 17: Quality management — aligned with ISO 42001
ISO International Standards
ISO/IEC 42001: AI Management System
ISO 27001: Information Security (certification planned)
ISO 31000: Risk Management (5x5 matrix applied)
BSI IT-Grundschutz: Server hardening per BSI guidelines

Audit Chain: Audit-Proof Documentation

Every AI interaction creates an audit block with:

Hash Chain
Each block references the previous hash
Hybrid Signature
Ed25519 + ML-DSA-65 double signed
Blockchain-Anchor
Polygon for independent verification
Advisory Lock
PostgreSQL lock against race conditions
10

Risk Assessment

Per ISO 31000, 20 risks in 6 categories were identified and assessed. The result: 0 critical, 4 high, 12 medium and 4 low risks. All high risks have measures with residual risk ≤ Medium.

0
Critical
4
High (with measures)
12
Medium
4
Low

After applying all measures: 0 high residual risks, 7 medium, 13 low. The complete risk assessment (document KIS-RISK-001) covers privacy, AI-specific, technical, organizational, compliance and post-quantum risks.

11

Roadmap & Vision

Q1 2026 — Completed
Foundation
Core proxy, 42 PII categories (46 recognizers), Zero-Knowledge, post-quantum signatures, audit chain, chat UI, BYOK, 24 containers, 8 security layers.
Q2 2026 — In Progress
Market Launch
ISO 27001/42001 certification, PII Redaction API launch, TypeScript SDK, iOS/Mac app (App Store), ShieldCam + ShieldVid (TaaS).
Q3–Q4 2026
Scale
Multi-tenant enterprise, on-premise deployment option, Microsoft Teams / Slack integration, multilingual PII (EN, FR, ES), partner program.
2027
Expand
EU-wide expansion (AT, CH, NL, FR), industry-specific solutions (Legal AI, Med AI), Kubernetes managed service, SOC 2 Type II.
12

Summary

ki-shield ~ conclusion
$ ki-shield --why
> The AI revolution is happening. The question is not whether,
> but how companies use AI — legally or illegally.
> KI-Shield makes "legal" the easier path.
42 PII categories · Zero-Knowledge · Post-Quantum
GDPR + EU AI Act + ISO 42001 — from one source
BYOK: >90% gross margin · break-even from 2 customers
347,000 target customers in Germany alone
No VC. No hype. German technology for German law.