Decrypt AES-encrypted ciphertext back to plaintext securely client-side.
Decrypt data that was encrypted using the AES GCM or CBC algorithms. This tool requires the encrypted ciphertext, the secret passphrase, and the Initialization Vector (IV) used during encryption. Everything runs entirely in your browser.
An **Initialization Vector (IV)** is a random value combined with the secret key to ensure that encrypting the same text twice will produce completely different ciphertexts. Decryption will fail, or produce scrambled data, if the exact correct IV is not provided.