RevealTheme logo

Cifratura AES-256

Cifra e decifra il testo con AES-256-GCM. La chiave viene derivata dalla sua passphrase tramite PBKDF2-SHA256.

Come usare questo strumento

  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.

Che cos'è la cifratura AES-256?

AES-256-GCM è lo standard di riferimento della cifratura simmetrica: è usato da TLS, Signal e dalla maggior parte della cifratura del disco. Questo strumento usa la Web Crypto API nel suo browser: randomizzazione di salt + IV per ogni cifratura e 100.000 iterazioni di PBKDF2 sulla sua passphrase. L'output viene codificato in base64 per un trasporto sicuro.

Casi d'uso comuni

  • 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.

Domande frequenti

Dove viene memorizzata la mia passphrase?
In nessun luogo. Viene usata per derivare la chiave in memoria e non viene mai inviata né salvata.
Cosa succede se perdo la passphrase?
I dati sono irrecuperabili. AES-256 non può essere decifrato con la forza bruta in alcun tempo ragionevole.

Strumenti correlati