RevealTheme logo

Cifrado AES-256

Cifra y descifra texto con AES-256-GCM. La clave se deriva de tu frase de contraseña mediante PBKDF2-SHA256.

Cómo usar esta herramienta

  1. 1

    Choose 'Encrypt' or 'Decrypt' from the mode dropdown.

  2. 2

    Type a passphrase into the password field — you'll need the exact same one to decrypt later.

  3. 3

    Paste plain text to encrypt, or paste the base64 ciphertext to decrypt, into the text area.

  4. 4

    Click 'Run' and copy the result from the output box below.

¿Qué es el Cifrado AES-256?

AES-256-GCM es el estándar de referencia del cifrado simétrico: lo usan TLS, Signal y la mayoría del cifrado de disco. Esta herramienta usa la Web Crypto API en tu navegador: aleatorización de sal + IV por cada cifrado y 100 000 iteraciones de PBKDF2 sobre tu frase de contraseña. La salida se codifica en base64 para un transporte seguro.

Casos de uso comunes

  • Encrypting a note, recovery phrase, or API key before pasting it into a chat, ticket, or shared document.

  • Sending a short secret to a teammate who has agreed on a passphrase through a separate channel.

  • Storing sensitive snippets in a password-protected form inside otherwise plain-text notes or a wiki.

  • Demonstrating how AES-GCM, PBKDF2 key derivation, and random IVs work for a class or code review.

  • Quickly checking that a base64 blob produced by this tool decrypts back to the expected text.

  • Adding a layer of protection to clipboard or backup text on a shared or untrusted machine.

Preguntas frecuentes

¿Dónde se almacena mi frase de contraseña?
En ningún sitio. Se usa para derivar la clave en memoria y nunca se envía ni se guarda.
¿Qué pasa si pierdo la frase de contraseña?
Los datos son irrecuperables. AES-256 no puede descifrarse por fuerza bruta en ningún plazo razonable.

Herramientas relacionadas