>_ Decrypt Text

Decrypt AES-256-GCM encrypted text using your password. Compatible with our Encrypt Text tool.

How It Works

  1. The Base64 input is decoded to extract salt (16 bytes), IV (12 bytes), and ciphertext
  2. Your password is derived into a 256-bit key using PBKDF2 with the extracted salt
  3. AES-256-GCM decrypts and authenticates the ciphertext
  4. If the password is wrong or data is tampered, decryption fails