lgpd-encryption-keys

lgpd-encryption-keys is a skill for Claude Code from goul4rt/lgpd-skills. It costs 96 tokens per session (1,070 once invoked), scanned A, original, MIT.

Guidance for protecting stored data, network traffic, backups, files, and sensitive database fields with encryption, while managing the keys used to decrypt it.

In plain words
What is it for?
Use it to plan TLS and HSTS, database and volume encryption, encrypted backups and object storage, key-management integration, and extra encryption for fields such as tax IDs, biometric data, health data, or authentication tokens.
Why use it?
It helps reduce the risk of exposing personal or sensitive information if communications, storage, backups, or application data are accessed improperly.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the lgpd-skills plugin — 19 skills shipped together

Good fit Use it to plan TLS and HSTS, database and volume encryption, encrypted backups and object storage, key-management integration, and extra encryption for fields such as tax IDs, biometric data, health data, or authentication tokens.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/goul4rt/lgpd-skills/lgpd-encryption-keys
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add goul4rt/lgpd-skills --skill lgpd-encryption-keys
Clone the repo
git clone --depth 1 https://github.com/goul4rt/lgpd-skills

Made for: Claude Code.

Or install lgpd-skills, the plugin that ships this one along with the rest of its 19 skills.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for lgpd-encryption-keys

README.md
[![agentmods](https://agentmods.dev/badge/skills/goul4rt/lgpd-skills/lgpd-encryption-keys/github.svg)](https://agentmods.dev/skills/goul4rt/lgpd-skills/lgpd-encryption-keys)
Your own site
<a href="https://agentmods.dev/skills/goul4rt/lgpd-skills/lgpd-encryption-keys"><img src="https://agentmods.dev/badge/skills/goul4rt/lgpd-skills/lgpd-encryption-keys/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for lgpd-encryption-keys

Your own site · 80×15
<a href="https://agentmods.dev/skills/goul4rt/lgpd-skills/lgpd-encryption-keys"><img src="https://agentmods.dev/badge/skills/goul4rt/lgpd-skills/lgpd-encryption-keys.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 96 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,070 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00096 $0.01070
Opus 5 $0.00048 $0.00535
Sonnet 5 $0.00019 $0.00214
Haiku 4.5 $0.00010 $0.00107

Measured 11d ago against content hash 061574cb81da, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

lgpd-encryption-keys scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 11d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/lgpd-encryption-keys/SKILL.md · 109 lines

How it starts

The opening of the file, as written. The whole thing — 109 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Encryption & Key Management

Art. 46 LGPD + Guia de Segurança da Informação para ATPP (ANPD, 2021).

Camadas

1. Em trânsito

  • TLS 1.3 em toda comunicação (cliente ↔ servidor, serviço ↔ serviço)
  • HSTS habilitado (max-age=31536000; includeSubDomains; preload)
  • Certificate pinning em apps mobile (React Native — react-native-ssl-pinning ou equivalente)
  • mTLS para comunicação entre serviços internos quando viável

2. Em repouso

  • TDE (Transparent Data Encryption) no PostgreSQL — habilitado pelo provider (AWS RDS, GCP Cloud SQL)
  • Volume encryption (EBS, persistent disks) — geralmente padrão hoje
  • Backups criptografados — mesma chave do volume, ou KMS dedicado
  • Storage de arquivos (S3, GCS): server-side encryption (SSE-KMS preferível a SSE-S3)

3. Nível de aplicação (campos sensíveis)

Para CPF, biometria, dados de saúde, tokens de auth — criptografia adicional em coluna:

// lib/crypto/field-encryption.ts
import { createCipheriv, createDecipheriv, randomBytes } from "crypto";

const KEY = await loadKeyFromKMS(); // 32 bytes

export function encryptField(plain: string): string {
  const iv = randomBytes(12);
  const cipher = createCipheriv("aes-256-gcm", KEY, iv);
  const enc = Buffer.concat([cipher.update(plain, "utf8"), cipher.final()]);
  const tag = cipher.getAuthTag();
  return Buffer.concat([iv, tag, enc]).toString("base64");
}

export function decryptField(encoded: string): string {
  const buf = Buffer.from(encoded, "base64");
  const iv = buf.subarray(0, 12);
  const tag = buf.subarray(12, 28);
  const enc = buf.subarray(28);
  const decipher = createDecipheriv("aes-256-gcm", KEY, iv);
  decipher.setAuthTag(tag);
  return Buffer.concat([decipher.update(enc), decipher.final()]).toString("utf8");
}

Prisma extension para criptografia transparente:

const prisma = new PrismaClient().$extends({
  query: {
    user: {
      async create({ args, query }) {
        if (args.data.cpf) args.data.cpf = encryptField(args.data.cpf);
        return query(args);
      },
      async findUnique({ args, query }) {
        const r = await query(args);
        if (r?.cpf) r.cpf = decryptField(r.cpf);
        return r;
      }
    }
  }
});

Read the full file on GitHub · 109 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 11d ago First seen · 109 lines · 96 tokens per session scan A 061574cb81da

Subscribe to this mod's changes

lgpd-encryption-keys is a skill published in the GitHub repository goul4rt/lgpd-skills (52 stars, last pushed 3mo ago), licensed MIT. It adds 96 tokens to every session and 1,070 once invoked, about $0.0005 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

privacy-policy-stephane-boghossian

A zero-hallucination privacy-policy generator that takes anyone — non-lawyer founder to lawyer — from a guided intake to a publishable, jurisdiction-aware privacy policy. Jurisdiction-first: it detects which laws apply from where your users are, then drafts only the required clauses — GDPR/EU + UK, US (CCPA/CPRA, 20…

lawve-ai/awesome-legal-skills · 171 tokens

brasil-legal-skills

Use quando o usuário tiver dúvidas ou precisar de orientação sobre direito brasileiro, declaração de IRPF passo a passo, tributário (Simples Nacional, MEI, CNPJ, CNAE, Reforma Tributária 2026, CBS/IBS), trabalhista (CLT, rescisão, aposentadoria, INSS, CLT vs PJ), societário (abertura de empresa, conflitos entre…

AlissonSantos1/brasil-legal-skills · 159 tokens

digital-brasil

Use para LGPD, proteção de dados, Marco Civil da Internet, cookies, termos de uso, privacidade em apps e sites, direitos digitais, vazamento de dados, adequação LGPD. Ativa em "LGPD", "proteção de dados", "política de privacidade", "vazamento de dados", "cookies", "Marco Civil", "direito ao esquecimento".

AlissonSantos1/brasil-legal-skills · 85 tokens

privacy-compliance

Comprehensive global privacy compliance agent skill covering GDPR, CCPA/CPRA, HIPAA Privacy Rule, EU AI Act, LGPD, cross-border data transfer mechanisms (SCCs, BCRs, EU-US DPF), PII identification and classification, data minimization, consent management, privacy-by-design patterns, DPIA workflows, data subject access…

JPeetz/agent-skills · 132 tokens

compliance-review

Compliance & Governance Review: Reviews systems for regulatory compliance — SOC2, HIPAA, PCI-DSS, ISO 27001, LGPD/GDPR. Covers access control, audit logging, encryption, data retention, incident response, and compliance documentation. Use when the user mentions SOC2, HIPAA, PCI, ISO 27001, LGPD, GDPR, compliance…

camilooscargbaptista/cto-toolkit · 103 tokens

analise-juridica-br

Skill para análise estruturada de contratos brasileiros como apoio a advogado. Acionar quando usuário pedir para "analisar contrato", "revisar cláusulas", "due diligence contratual" ou similar, em contexto de Direito brasileiro. NÃO emite parecer jurídico — produz insumo qualificado para advogado.

falercia/deep-claude · 67 tokens