ToolypetMCP
advanced6 minutescross hub

Data Privacy & Compliance Kit

Implement data privacy: encrypt PII, hash identifiers, generate secure tokens, and configure privacy-respecting headers.

privacygdprencryptioncompliancepii

何时使用此配方

GDPR, CCPA, and HIPAA compliance requires encryption, pseudonymization, and access control for personal data. This workflow sets up the technical foundations.

步骤

1

AES Encryption

试用此工具

Encrypt PII at rest

提示词:Encrypt PII data: email address 'user@example.com' with AES-256 for GDPR-compliant storage
2

Hash Calculator

试用此工具

Pseudonymize identifiers

提示词:Hash user identifiers with SHA-256 + salt for pseudonymization in analytics
3

Secret Generator

试用此工具

Per-category encryption keys

提示词:Generate data encryption keys for each data category: PII, financial, health records
4

CSP Generator

试用此工具

Privacy-respecting CSP

提示词:Generate CSP that blocks third-party trackers — no connect-src to analytics domains
5

Robots Generator

试用此工具

Block PII page indexing

提示词:Generate robots.txt blocking crawlers from user profile and account pages

常见问题

What data must be encrypted for GDPR?

GDPR recommends encryption for all personal data. At minimum: names, emails, addresses, phone numbers, IP addresses, financial data, and health data. Encryption is a key 'appropriate technical measure'.

What's the difference between anonymization and pseudonymization?

Anonymization is irreversible — data can never be linked back to an individual. Pseudonymization is reversible with a key. GDPR still applies to pseudonymized data but not anonymized data.

相关配方